diff --git a/fortunate.tgz b/fortunate.tgz deleted file mode 100755 index e9c20413..00000000 Binary files a/fortunate.tgz and /dev/null differ diff --git a/fortunate/fortunate.css b/fortunate/fortunate.css deleted file mode 100755 index 61813b7d..00000000 --- a/fortunate/fortunate.css +++ /dev/null @@ -1,7 +0,0 @@ -.fortunate { - margin-top: 25px; - margin-left: 100px; - margin-bottom: 25px; - color: #000088; - font-size: 14px; -} \ No newline at end of file diff --git a/fortunate/fortunate.php b/fortunate/fortunate.php deleted file mode 100755 index f434d486..00000000 --- a/fortunate/fortunate.php +++ /dev/null @@ -1,27 +0,0 @@ - - */ - - -function fortunate_install() { - register_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch'); -} - -function fortunate_uninstall() { - unregister_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch'); -} - - -function fortunate_fetch(&$a,&$b) { - - $a->page['htmlhead'] .= '' . "\r\n"; - - $s = fetch_url('http://fortunemod.com/cookie.php?numlines=2&equal=1&rand=' . mt_rand()); - $b .= '
' . $s . '
'; -} -