From a662d52cd9774b7b4374b93f4dbbb3563afb8de0 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 16 Nov 2010 14:40:49 -0700 Subject: [PATCH] Fix text representation of size search --- imp/lib/Search/Element/Size.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.11.0