[Fixed] wrong twig-modifier
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
<title>{{ title }}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset={{ charset }}">
|
||||
{% if isset(meta_refresh_sec, meta_refresh_url) %}
|
||||
<meta http-equiv=Refresh content="{{ meta_refresh_sec }};URL={{ meta_refresh_url|replace("&", "&") }}">
|
||||
<meta http-equiv=Refresh content="{{ meta_refresh_sec }};URL={{ meta_refresh_url|replace({"&": "&"})}}">
|
||||
{% endif %}
|
||||
<link rel="shortcut icon" href="{{ oViewConf.getBaseDir() }}favicon.ico">
|
||||
|
||||
@ -42,7 +42,7 @@
|
||||
var ajaxpopup = null;
|
||||
function showDialog( sParams )
|
||||
{
|
||||
ajaxpopup = window.open('{{ oViewConf.getSelfLink()|replace("&", "&") }}'+sParams, 'ajaxpopup', 'width=850,height=680,scrollbars=yes,resizable=yes');
|
||||
ajaxpopup = window.open('{{ oViewConf.getSelfLink()|replace({"&": "&"})}}'+sParams, 'ajaxpopup', 'width=850,height=680,scrollbars=yes,resizable=yes');
|
||||
}
|
||||
|
||||
function focusPopup()
|
||||
|
Reference in New Issue
Block a user