X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fviewsrc.php;h=087b9f3d2a73cb6c728d155667e611b8094f2e74;hb=5af9596dde162b1b9819869e3d5129f571a1c503;hp=3fa4eaed53bad2b53686a59aef0af30acf1f5645;hpb=dfa5183774e24fe2b1a355c9427372d4cd55ea70;p=friendica.git diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 3fa4eaed53..087b9f3d2a 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(count($r)) - if(is_ajax()) { - echo str_replace("\n",'
',$r[0]['body']); + if (DBM::is_result($item)) { + if (is_ajax()) { + echo str_replace("\n", '
', $item['body']); killme(); } else { - $o .= str_replace("\n",'
',$r[0]['body']); + $o .= str_replace("\n", '
', $item['body']); } + } return $o; } -