convert "::1" and other pseudo-IPv6 addresses that Apache may throw at us to their...
[lhc/web/wiklou.git] / includes / SearchMySQL4.php
index 3e770fb..dcc1f68 100644 (file)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU General Public License along
 # with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # http://www.gnu.org/copyleft/gpl.html
 
 /**
  * @subpackage Search
  */
 
-require_once( 'SearchMySQL.php' );
-
 /**
  * @package MediaWiki
  * @subpackage Search
  */
 class SearchMySQL4 extends SearchMySQL {
        var $strictMatching = true;
-       
+
        /** @todo document */
        function SearchMySQL4( &$db ) {
                $this->db =& $db;
@@ -66,7 +64,7 @@ class SearchMySQL4 extends SearchMySQL {
                } else {
                        wfDebug( "Can't understand search query '{$filteredText}'\n" );
                }
-               
+
                $searchon = $this->db->strencode( $searchon );
                $field = $this->getIndexField( $fulltext );
                return " MATCH($field) AGAINST('$searchon' IN BOOLEAN MODE) ";