X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fviewsrc.php;h=d2f0d01a07b183bc7b45f79f30e8f5b502363ad7;hb=baf316e89808b1480f1fa69916cc2b60c343993b;hp=74652dcca37ea015d9ebbbf01d1745c645197c0c;hpb=9c2c4839968169a191084d6d2b0d629d82430e67;p=friendica.git diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 74652dcca3..d2f0d01a07 100644 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -1,18 +1,24 @@ argc > 1) ? intval($a->argv[1]) : 0); - if (! $item_id) { + if(! $item_id) { $a->error = 404; - notice( t('Item not found.') . EOL); + notice(L10n::t('Item not found.') . EOL); return; } @@ -24,8 +30,8 @@ function viewsrc_content(App $a) { dbesc($item_id) ); - if (dbm::is_result($r)) - if (is_ajax()) { + if (DBM::is_result($r)) + if(is_ajax()) { echo str_replace("\n",'
',$r[0]['body']); killme(); } else {