Change Module\Filer::content to rawContent to prevent full page to load in modal

This commit is contained in:
Hypolite Petovan 2019-04-14 08:57:27 -04:00
parent 19f474f50d
commit b4b67aa136
1 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,7 @@ class Filer extends BaseModule
}
}
public static function content()
public static function rawContent()
{
$a = self::getApp();
$logger = $a->getLogger();
@ -44,9 +44,11 @@ class Filer extends BaseModule
$filetags = explode(",", $filetags);
$tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
return Renderer::replaceMacros($tpl, [
echo Renderer::replaceMacros($tpl, [
'$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
'$submit' => L10n::t('Save'),
]);
exit;
}
}