X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fviewsrc.php;h=7ed029aa78100f6cc118c05de0a4450644ce9b3a;hb=c06f7ad11e3040e9cb7b2a09682a33cbdd5d5ccd;hp=8510bd539573ac72ebbd07b1636b53ad06bb61ce;hpb=b6d11f21297331cda361ebadca3c1cf453027fdd;p=friendica.git diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 8510bd5395..7ed029aa78 100644 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -1,36 +1,37 @@ 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; } - $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", - intval(local_user()), - dbesc($item_id) - ); + $item = Item::selectFirst(['body'], ['uid' => local_user(), 'id' => $item_id]); - if (dbm::is_result($r)) - if(is_ajax()) { - echo str_replace("\n",'
',$r[0]['body']); + if (DBA::isResult($item)) { + if ($a->isAjax()) { + echo str_replace("\n", '
', $item['body']); killme(); } else { - $o .= str_replace("\n",'
',$r[0]['body']); + $o .= str_replace("\n", '
', $item['body']); } + } return $o; } -