mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
parent
0d529ef682
commit
ea15541d05
3 changed files with 17 additions and 17 deletions
|
|
@ -395,7 +395,7 @@ class ModuleController extends Module
|
|||
{
|
||||
$args->module_srl = getNextSequence();
|
||||
}
|
||||
$args->browser_title = escape(strip_tags($args->browser_title ?? ''), false, true);
|
||||
$args->browser_title = escape($args->browser_title ?? '', false, true);
|
||||
$args->description = isset($args->description) ? escape($args->description, false) : null;
|
||||
if(!isset($args->skin) || $args->skin == '/USE_DEFAULT/')
|
||||
{
|
||||
|
|
@ -508,7 +508,7 @@ class ModuleController extends Module
|
|||
}
|
||||
}
|
||||
|
||||
$args->browser_title = escape(strip_tags($args->browser_title ?? $module_info->browser_title), false, true);
|
||||
$args->browser_title = escape($args->browser_title ?? $module_info->browser_title, false, true);
|
||||
$args->description = isset($args->description) ? escape($args->description, false) : null;
|
||||
|
||||
// default value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue