From f131b5eb3a69c07ccc104732d7b2fb8b8d7ec16e Mon Sep 17 00:00:00 2001 From: alec Date: Fri, 19 Sep 2008 07:22:24 +0000 Subject: - support variables of type 'cookie' (for feature use) git-svn-id: https://svn.roundcube.net/trunk@1840 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_template.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roundcubemail/program/include/rcube_template.php b/roundcubemail/program/include/rcube_template.php index 6c566e563..55bf220c8 100755 --- a/roundcubemail/program/include/rcube_template.php +++ b/roundcubemail/program/include/rcube_template.php @@ -639,6 +639,9 @@ class rcube_template extends rcube_html_page case 'session': $value = $_SESSION[$name]; break; + case 'cookie': + $value = htmlspecialchars($_COOKIE[$name]); + break; } if (is_array($value)) { -- cgit v1.2.3