diff options
author | thomascube <thomas@roundcube.net> | 2007-05-17 17:01:22 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-05-17 17:01:22 +0000 |
commit | 7198044efba3df34642570d57cc567b51af0d5dd (patch) | |
tree | efa6f68555ba94748a1a50270f5d79fd46144eb9 /program/include | |
parent | e3caaf59c20fd556364f838ae6082b3e2fba6d56 (diff) |
Fixed conditional template tags; hide quota display if imap server does not support it
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail_template.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail_template.inc b/program/include/rcmail_template.inc index e2fa682e4..6e3fe52b8 100644 --- a/program/include/rcmail_template.inc +++ b/program/include/rcmail_template.inc @@ -339,7 +339,7 @@ class rcmail_template extends rcube_html_page $submatches = preg_split('/<roundcube:(elseif|else|endif)\s+([^>]+)>/is', $matches[3], 2, PREG_SPLIT_DELIM_CAPTURE); if ($condmet) - $result = $submatches[0] . preg_replace('/.*<roundcube:endif\s+[^>]+>/is', '', $submatches[3]); + $result = $submatches[0] . ($submatches[1] != 'endif' ? preg_replace('/.*<roundcube:endif\s+[^>]+>/Uis', '', $submatches[3], 1) : $submatches[3]); else $result = "<roundcube:$submatches[1] $submatches[2]>" . $submatches[3]; |