diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-02-18 01:34:25 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-02-18 01:34:25 +0100 |
commit | 7e04592b5c86352425906bb754c38a8fbea53b09 (patch) | |
tree | efa0caab141a7ad3d72256ffad5378c36c56e51a /ratatoeskr/templates/src | |
parent | 0861240931fca9e2124703cda8b1a815a838465d (diff) | |
download | ratatoeskr-cms-7e04592b5c86352425906bb754c38a8fbea53b09.tar.gz ratatoeskr-cms-7e04592b5c86352425906bb754c38a8fbea53b09.tar.bz2 ratatoeskr-cms-7e04592b5c86352425906bb754c38a8fbea53b09.zip |
Incompatible plugins will now get disabled.
Diffstat (limited to 'ratatoeskr/templates/src')
-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"> |