X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fviewsrc.php;h=376e2ef68e30984f04787c894473bdb558cd5f84;hb=170e84e9f2da8d2fecd3a25d790b053b568cd45a;hp=3fa4eaed53bad2b53686a59aef0af30acf1f5645;hpb=3c97a6703cd5a743fc9339f52996bcb1eb436ef0;p=friendica.git diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 3fa4eaed53..376e2ef68e 100644 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -1,10 +1,15 @@ error = 404; - notice( t('Item not found.') . EOL); + notice(L10n::t('Item not found.') . EOL); return; } - $r = q("SELECT `item`.`body` FROM `item` + $r = q("SELECT `item`.`body` FROM `item` WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0 AND `item`.`id` = '%s' LIMIT 1", @@ -24,7 +29,7 @@ function viewsrc_content(&$a) { dbesc($item_id) ); - if(count($r)) + if (DBM::is_result($r)) if(is_ajax()) { echo str_replace("\n",'
',$r[0]['body']); killme();