forked from extern/egroupware
allow json in body on(Load|Unload|Resize) tags
This commit is contained in:
parent
22dcb1c5de
commit
5443acbb21
@ -965,7 +965,7 @@ abstract class egw_framework
|
||||
{
|
||||
if (!empty($data))
|
||||
{
|
||||
$js .= ' '.$what.'="' . str_replace(array('\\\'','"','\\','''),array(''','\\"','\\\\','\\\''),$data) . '"';
|
||||
$js .= ' '.$what.'="' . htmlspecialchars($data) . '"';
|
||||
}
|
||||
}
|
||||
return $js;
|
||||
|
@ -97,7 +97,7 @@ class idots_framework extends egw_framework
|
||||
|
||||
// the instanciation of the template has to be here and not in the constructor,
|
||||
// as the old Template class has problems if restored from the session (php-restore)
|
||||
$this->tpl = new Template(EGW_TEMPLATE_DIR);
|
||||
$this->tpl = new Template(EGW_TEMPLATE_DIR,'keep');
|
||||
$this->tpl->set_file(array('_head' => 'head.tpl'));
|
||||
$this->tpl->set_block('_head','head');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user