Merge pull request #8821 from MrPetovan/bug/fix-item-source-route

Improve Module\Admin\Item\Source
This commit is contained in:
Michael Vogel 2020-06-28 14:02:25 +02:00 committed by GitHub
commit 77e0d8c7bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 14 deletions

View File

@ -33,15 +33,7 @@ class Source extends BaseAdmin
{
parent::content($parameters);
$a = DI::app();
$guid = null;
// @TODO: Replace with parameter from router
if (!empty($a->argv[3])) {
$guid = $a->argv[3];
}
$guid = $_REQUEST['guid'] ?? $guid;
$guid = basename($_REQUEST['guid'] ?? '') ?: $parameters['guid'];
$source = '';
$item_uri = '';
@ -50,6 +42,7 @@ class Source extends BaseAdmin
if (!empty($guid)) {
$item = Model\Item::selectFirst(['id', 'uri-id', 'guid', 'uri'], ['guid' => $guid]);
if ($item) {
$conversation = Model\Conversation::getByItemUri($item['uri']);
$item_id = $item['id'];
@ -57,6 +50,7 @@ class Source extends BaseAdmin
$source = $conversation['source'];
$terms = Model\Tag::getByURIId($item['uri-id'], [Model\Tag::HASHTAG, Model\Tag::MENTION, Model\Tag::IMPLICIT_MENTION]);
}
}
$tpl = Renderer::getMarkupTemplate('admin/item/source.tpl');
$o = Renderer::replaceMacros($tpl, [