]> git.mxchange.org Git - friendica-addons.git/blobdiff - fortunate/fortunate.php
[fortunate] Mark addon as unsupported
[friendica-addons.git] / fortunate / fortunate.php
index c51bf3745f03a71e7a3ed7a8a1f4d0fe72a61ef6..ebece48981546f3a17dfae8a6aa7d11e8a22607e 100644 (file)
@@ -4,6 +4,7 @@
  * Description: Add a random fortune cookie at the bottom of every pages. [Requires manual confguration.]
  * Version: 1.0
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
+ * Status: Unsupported
  */
 use Friendica\Core\Addon;
 use Friendica\Util\Network;
@@ -28,11 +29,11 @@ function fortunate_uninstall()
 
 function fortunate_fetch(&$a, &$b)
 {
-       $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' 
+       $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'
                . $a->get_baseurl() . '/addon/fortunate/fortunate.css' . '" media="all" />' . "\r\n";
 
        if (FORTUNATE_SERVER != 'hostname.com') {
-               $s = Network::fetchURL('http://' . FORTUNATE_SERVER . '/cookie.php?numlines=2&equal=1&rand=' . mt_rand());
+               $s = Network::fetchUrl('http://' . FORTUNATE_SERVER . '/cookie.php?numlines=2&equal=1&rand=' . mt_rand());
                $b .= '<div class="fortunate">' . $s . '</div>';
        }
 }