Move storing of $db down to SearchEngine
[lhc/web/wiklou.git] / includes / search / SearchPostgres.php
index c9a2c0b..8c9e293 100644 (file)
  * @ingroup Search
  */
 class SearchPostgres extends SearchEngine {
-
+       /**
+        * Creates an instance of this class
+        * @param $db DatabaseSqlite: database object
+        */
        function __construct( $db ) {
-               $this->db = $db;
+               parent::__construct( $db );
        }
 
        /**