Fix wrong variable type in mod/message

This commit is contained in:
Hypolite Petovan 2018-02-28 20:08:59 -05:00
parent a6c785f693
commit dca0fa3f1d
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ function message_content(App $a)
'$linkurl' => L10n::t('Please enter a link URL:')
]);
$preselect = isset($a->argv[2]) ? [$a->argv[2]] : false;
$preselect = isset($a->argv[2]) ? [$a->argv[2]] : [];
$prename = $preurl = $preid = '';