mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-09 05:22:13 +09:00
Fix #249 double-escape of site title and HTML footer
This commit is contained in:
parent
b4936c8f09
commit
079b04684a
1 changed files with 2 additions and 2 deletions
|
|
@ -505,8 +505,8 @@ class adminAdminController extends admin
|
|||
|
||||
// Site title and HTML footer
|
||||
$args = new stdClass;
|
||||
$args->siteTitle = escape($vars->site_title);
|
||||
$args->htmlFooter = escape($vars->html_footer);
|
||||
$args->siteTitle = $vars->site_title;
|
||||
$args->htmlFooter = $vars->html_footer;
|
||||
$oModuleController->updateModuleConfig('module', $args);
|
||||
|
||||
// Index module
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue