]> git.mxchange.org Git - friendica.git/blobdiff - mod/mood.php
Merge remote-tracking branch 'upstream/develop' into 1607-api-generic-xml
[friendica.git] / mod / mood.php
index 2476f06562e0f76af80b88d7122608511563b386..5e6ca0fcfc068533751908e8bc2e4d91ba7beed1 100644 (file)
@@ -4,7 +4,7 @@ require_once('include/security.php');
 require_once('include/bbcode.php');
 require_once('include/items.php');
 
-if(! function_exists('mood_init')) {
+
 function mood_init(&$a) {
 
        if(! local_user())
@@ -59,10 +59,10 @@ function mood_init(&$a) {
 
        $uri = item_new_uri($a->get_hostname(),$uid);
 
-       $action = sprintf( t('%1$s is currently %2$s'), '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' , $verbs[$verb]);
+       $action = sprintf( t('%1$s is currently %2$s'), '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' , $verbs[$verb]); 
 
        $arr = array();
-
+       $arr['guid']          = get_guid(32);
        $arr['uid']           = $uid;
        $arr['uri']           = $uri;
        $arr['parent-uri']    = (($parent_uri) ? $parent_uri : $uri);
@@ -105,9 +105,9 @@ function mood_init(&$a) {
 
        return;
 }
-}
 
-if(! function_exists('mood_content')) {
+
+
 function mood_content(&$a) {
 
        if(! local_user()) {
@@ -138,5 +138,5 @@ function mood_content(&$a) {
        ));
 
        return $o;
-}
+
 }