From 23796ec2909bf9cb3ae846f9d124a1098672c5ff Mon Sep 17 00:00:00 2001 From: svncommit Date: Mon, 18 Dec 2006 09:11:57 +0000 Subject: Fix display of quota image/text after a remote command. --- program/steps/mail/func.inc | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) (limited to 'program/steps/mail/func.inc') diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 5e91d162f..0f062156c 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -634,7 +634,7 @@ function rcmail_messagecount_display($attrib) function rcmail_quota_display($attrib) { - global $IMAP, $OUTPUT, $JS_OBJECT_NAME, $COMM_PATH; + global $OUTPUT, $JS_OBJECT_NAME, $COMM_PATH; if (!$attrib['id']) $attrib['id'] = 'rcmquotadisplay'; @@ -642,7 +642,18 @@ function rcmail_quota_display($attrib) $OUTPUT->add_script(sprintf("%s.gui_object('quotadisplay', '%s');", $JS_OBJECT_NAME, $attrib['id'])); // allow the following attributes to be added to the tag - $attrib_str = create_attrib_string($attrib, array('style', 'class', 'id')); + $attrib_str = create_attrib_string($attrib, array('style', 'class', 'id', 'display')); + + $out = ''; + $out .= rcmail_quota_content($attrib['display']); + $out .= ''; + return $out; + } + + +function rcmail_quota_content($display) + { + global $IMAP, $COMM_PATH; if (!$IMAP->get_capability('QUOTA')) $quota_text = rcube_label('unknown'); @@ -654,9 +665,9 @@ function rcmail_quota_display($attrib) $quota["percent"]); // show quota as image (by Brett Patterson) - if ($attrib['display'] == 'image' && function_exists('imagegif')) + if ($display == 'image' && function_exists('imagegif')) { - $attrib += array('width' => 100, 'height' => 14); + $attrib = array('width' => 100, 'height' => 14); $quota_text = sprintf('%s', $COMM_PATH, $quota['used'], $quota['total'], @@ -669,12 +680,8 @@ function rcmail_quota_display($attrib) } else $quota_text = rcube_label('unlimited'); - - $out = ''; - $out .= $quota_text; - $out .= ''; - return $out; + return $quota_text; } -- cgit v1.2.3