]> git.mxchange.org Git - friendica-addons.git/commitdiff
Viewsrc will now work on the community page as well.
authorMichael Vogel <icarus@dabo.de>
Sat, 31 Oct 2015 22:06:59 +0000 (23:06 +0100)
committerMichael Vogel <icarus@dabo.de>
Sat, 31 Oct 2015 22:06:59 +0000 (23:06 +0100)
viewsrc/viewsrc.php

index 9366930f00e133b21c2150d9575a4f06f619e57d..687d925372a0000b955556ea3777079cfac8dd8c 100644 (file)
@@ -34,8 +34,26 @@ EOS;
 }
 
 function viewsrc_item_photo_menu(&$a,&$b) {
-       if((! local_user()) || (local_user() != $b['item']['uid']))
+       if(!local_user())
                return;
-       $b['menu'] = array_merge( array( t('View Source') => $a->get_baseurl() . '/viewsrc/'. $b['item']['id']), $b['menu']);
+
+       if (local_user() != $b['item']['uid']) {
+               $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s'",
+                               intval(local_user()), dbesc($b['item']['guid']));
+
+               if (!$r)
+                       return;
+
+               $item_id = $r[0]['id'];
+
+       } else
+               $item_id = $b['item']['id'];
+
+       $b['menu'] = array_merge( array( t('View Source') => $a->get_baseurl() . '/viewsrc/'. $item_id), $b['menu']);
+
+       //if((! local_user()) || (local_user() != $b['item']['uid']))
+       //      return;
+
+       //$b['menu'] = array_merge( array( t('View Source') => $a->get_baseurl() . '/viewsrc/'. $b['item']['id']), $b['menu']);
 
 }