]> git.mxchange.org Git - friendica.git/blobdiff - mod/mood.php
DE translation of the BBCode reference, small stuff on the EN version
[friendica.git] / mod / mood.php
index 2476f06562e0f76af80b88d7122608511563b386..f804af0c00819ec0d9ed93714867e44b49396502 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);
@@ -95,19 +95,19 @@ function mood_init(&$a) {
                        intval($uid),
                        intval($item_id)
                );
-               proc_run('php',"include/notifier.php","tag","$item_id");
+               proc_run(PRIORITY_HIGH, "include/notifier.php", "tag", $item_id);
        }
 
 
        call_hooks('post_local_end', $arr);
 
-       proc_run('php',"include/notifier.php","like","$post_id");
+       proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $post_id);
 
        return;
 }
-}
 
-if(! function_exists('mood_content')) {
+
+
 function mood_content(&$a) {
 
        if(! local_user()) {
@@ -138,5 +138,5 @@ function mood_content(&$a) {
        ));
 
        return $o;
-}
+
 }