PHP 5 constructor
authorChuck Hagenbuch <chuck@horde.org>
Wed, 18 Nov 2009 04:26:46 +0000 (23:26 -0500)
committerChuck Hagenbuch <chuck@horde.org>
Wed, 18 Nov 2009 04:26:46 +0000 (23:26 -0500)
ansel/lib/Search/exif.php

index 773275c..0f800dc 100644 (file)
@@ -18,12 +18,11 @@ class Ansel_Search_exif {
      * @param array $params
      * @return Ansel_Search_exif
      */
-    function Ansel_Search_exif($params = array())
+    public function __construct($params = array())
     {
         $this->_type = 'exif';
     }
 
-
     /**
      * retrieve a slice of the current search
      *
@@ -40,5 +39,4 @@ class Ansel_Search_exif {
     function count()
     {
     }
-
 }