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