X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Feditpost.php;h=4bfb63ada5de6cdd14a5ec1edac3f6922a0cc1fc;hb=6001c34525867a0aa614dbc020dcbc485e515345;hp=209fbcf5ab8d9327a1c3f02fe32ec71372f86d92;hpb=065ab017c7508ef1d2aa39a13bfc4b68af3aa38d;p=friendica.git diff --git a/mod/editpost.php b/mod/editpost.php index 209fbcf5ab..4bfb63ada5 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -28,6 +28,7 @@ use Friendica\DI; use Friendica\Model\Contact; use Friendica\Model\FileTag; use Friendica\Model\Item; +use Friendica\Model\Post; use Friendica\Util\Crypto; function editpost_content(App $a) @@ -49,7 +50,7 @@ function editpost_content(App $a) $fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'type', 'body', 'title', 'file', 'wall', 'post-type', 'guid']; - $item = Item::selectFirstForUser(local_user(), $fields, ['id' => $post_id, 'uid' => local_user()]); + $item = Post::selectFirstForUser(local_user(), $fields, ['id' => $post_id, 'uid' => local_user()]); if (!DBA::isResult($item)) { notice(DI::l10n()->t('Item not found')); @@ -66,7 +67,8 @@ function editpost_content(App $a) DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [ '$ispublic' => ' ', // DI::l10n()->t('Visible to everybody'), '$geotag' => $geotag, - '$nickname' => $a->user['nickname'] + '$nickname' => $a->user['nickname'], + '$is_mobile' => DI::mode()->isMobile(), ]); if (strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) {