X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fviewsrc.php;h=087b9f3d2a73cb6c728d155667e611b8094f2e74;hb=0e8fa341561c7fafb962564d4d46988298b84671;hp=94ed9b5dc247f602feaa6ad21a0df9af43bc73a6;hpb=949507d6881b2a24df1d3bbb43c63782f7ac9d49;p=friendica.git diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 94ed9b5dc2..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(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; } -