X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fviewsrc.php;h=d2f0d01a07b183bc7b45f79f30e8f5b502363ad7;hb=e74f186b3488dfe2eb607f21f7f3c53e8a392333;hp=904b1442505d6f1aea9e58ae6335ea8dacb92485;hpb=ff569756ee6c5e058700cf6428918f059525e77c;p=friendica.git diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 904b144250..d2f0d01a07 100644 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -1,22 +1,28 @@ argc > 1) ? intval($a->argv[1]) : 0); if(! $item_id) { $a->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 +30,7 @@ function viewsrc_content(&$a) { dbesc($item_id) ); - if (dbm::is_result($r)) + if (DBM::is_result($r)) if(is_ajax()) { echo str_replace("\n",'
',$r[0]['body']); killme();