diff options
Diffstat (limited to 'ratatoeskr/templates')
-rwxr-xr-x | ratatoeskr/templates/src/systemtemplates/master.html | 11 | ||||
-rw-r--r-- | ratatoeskr/templates/src/systemtemplates/pluginlist.html | 3 |
2 files changed, 11 insertions, 3 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/master.html b/ratatoeskr/templates/src/systemtemplates/master.html index d1328d9..93cdd97 100755 --- a/ratatoeskr/templates/src/systemtemplates/master.html +++ b/ratatoeskr/templates/src/systemtemplates/master.html @@ -1,14 +1,21 @@ <ste:mktag name="default_success"> <ste:if>$success <ste:then> - <div class="success"><ste:escape>$success</ste:escape></div> + <div class="success">?{$_tag_parameters[noescape]|$success|<ste:escape>$success</ste:escape>}</div> </ste:then> </ste:if> </ste:mktag> <ste:mktag name="default_error"> <ste:if>$error <ste:then> - <div class="error"><ste:escape>$error</ste:escape></div> + <div class="error">?{$_tag_parameters[noescape]|$error|<ste:escape>$error</ste:escape>}</div> + </ste:then> + </ste:if> +</ste:mktag> +<ste:mktag name="default_notice"> + <ste:if>$notice + <ste:then> + <div class="notice">?{$_tag_parameters[noescape]|$notice|<ste:escape>$notice</ste:escape>}</div> </ste:then> </ste:if> </ste:mktag> diff --git a/ratatoeskr/templates/src/systemtemplates/pluginlist.html b/ratatoeskr/templates/src/systemtemplates/pluginlist.html index 056ba96..5d88fb4 100644 --- a/ratatoeskr/templates/src/systemtemplates/pluginlist.html +++ b/ratatoeskr/templates/src/systemtemplates/pluginlist.html @@ -1,6 +1,7 @@ <ste:load name="master.html" /> <ste:block name="content"> - <ste:default_error /> + <ste:default_error noescape="y" /> + <ste:default_notice noescape="y" /> <ste:default_success /> <form action="$rel_path_to_root/backend/plugin/list" method="post"> |