]> git.mxchange.org Git - friendica.git/blobdiff - mod/editpost.php
Show the worker queue count if the workers are active
[friendica.git] / mod / editpost.php
index ee4d61e60a7c61182e177e77404fe16bbdcc1d22..46a530dce09f49ec5da5058364aac0b88f4fe6df 100644 (file)
@@ -2,7 +2,6 @@
 
 require_once('include/acl_selectors.php');
 
-if(! function_exists('editpost_content')) {
 function editpost_content(&$a) {
 
        $o = '';
@@ -147,9 +146,16 @@ function editpost_content(&$a) {
                '$jotplugins' => $jotplugins,
                '$sourceapp' => t($a->sourcename),
                '$cancel' => t('Cancel'),
-               '$rand_num' => random_digits(12)
+               '$rand_num' => random_digits(12),
+
+               //jot nav tab (used in some themes)
+               '$message' => t('Message'),
+               '$browser' => t('Browser'),
+               '$shortpermset' => t('permissions'),
        ));
 
        return $o;
+
 }
-}
+
+