From: Stéphane Jacob Date: Fri, 22 Apr 2011 09:47:31 +0000 (+0200) Subject: Fixes call to phone number. X-Git-Tag: xorg/1.1.1~74 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=14f9a5c3988125cc794b6a94c5e54958db9f4dd3;p=platal.git Fixes call to phone number. Signed-off-by: Stéphane Jacob --- diff --git a/classes/userfilter/conditions.inc.php b/classes/userfilter/conditions.inc.php index c689f0b..e5c347b 100644 --- a/classes/userfilter/conditions.inc.php +++ b/classes/userfilter/conditions.inc.php @@ -1428,7 +1428,7 @@ class UFC_Phone extends UserFilterCondition { $phone = new Phone(array('display' => $number)); $phone->format(); - $this->number = $phone->search(); + $this->number = $phone->search; $this->num_type = $num_type; $this->phone_type = $phone_type; }