From: Michael M Slusarz Date: Tue, 16 Nov 2010 21:40:49 +0000 (-0700) Subject: Fix text representation of size search X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a662d52cd9774b7b4374b93f4dbbb3563afb8de0;p=horde.git Fix text representation of size search --- diff --git a/imp/lib/Search/Element/Size.php b/imp/lib/Search/Element/Size.php index 1ede15317..68bf12604 100644 --- a/imp/lib/Search/Element/Size.php +++ b/imp/lib/Search/Element/Size.php @@ -54,7 +54,7 @@ class IMP_Search_Element_Size extends IMP_Search_Element ? _("Size (KB) >") : _("Size (KB) <"); - return $label . ' ' . ($rule->v / 1024); + return $label . ' ' . ($this->_data->s / 1024); } }