argc > 1) ? intval($app->argv[1]) : 0); if (!$itemId) { throw new HTTPException\NotFoundException(L10n::t('Item not found.')); } $item = Item::selectFirst(['body'], ['uid' => local_user(), 'id' => $itemId]); if (!empty($item)) { if ($app->isAjax()) { echo str_replace("\n", '
', $item['body']); exit(); } else { return str_replace("\n", '
', $item['body']); } } else { throw new HTTPException\NotFoundException(L10n::t('Item not found.')); } } }