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