Remove superfluous code in mod/item

This commit is contained in:
Hypolite Petovan 2020-01-29 22:44:09 -05:00
parent 4faad5a47c
commit b86083de06
1 changed files with 4 additions and 9 deletions

View File

@ -119,7 +119,7 @@ function item_post(App $a) {
}
if (!DBA::isResult($toplevel_item)) {
notice(DI::l10n()->t('Unable to locate original post.') . EOL);
notice(DI::l10n()->t('Unable to locate original post.'));
if ($return_path) {
DI::baseUrl()->redirect($return_path);
}
@ -166,7 +166,7 @@ function item_post(App $a) {
// Now check that valid personal details have been provided
if (!Security::canWriteToUserWall($profile_uid) && !$allow_comment) {
notice(DI::l10n()->t('Permission denied.') . EOL);
notice(DI::l10n()->t('Permission denied.'));
if ($return_path) {
DI::baseUrl()->redirect($return_path);
}
@ -320,7 +320,8 @@ function item_post(App $a) {
if ($preview) {
System::jsonExit(['preview' => '']);
}
info(DI::l10n()->t('Empty post discarded.') . EOL);
info(DI::l10n()->t('Empty post discarded.'));
if ($return_path) {
DI::baseUrl()->redirect($return_path);
}
@ -502,9 +503,6 @@ function item_post(App $a) {
$body = DI::bbCodeVideo()->transform($body);
// Fold multi-line [code] sequences
$body = preg_replace('/\[\/code\]\s*\[code\]/ism', "\n", $body);
$body = BBCode::scaleExternalImages($body);
// Setting the object type if not defined before
@ -829,9 +827,6 @@ function item_post(App $a) {
function item_post_return($baseurl, $api_source, $return_path)
{
// figure out how to return, depending on from whence we came
$a = DI::app();
if ($api_source) {
return;
}