REPLACE INTO -> Database::replace(), getting ready for tsearch
authorDomas Mituzas <midom@users.mediawiki.org>
Fri, 17 Sep 2004 12:34:31 +0000 (12:34 +0000)
committerDomas Mituzas <midom@users.mediawiki.org>
Fri, 17 Sep 2004 12:34:31 +0000 (12:34 +0000)
includes/SearchUpdate.php

index 6837642..3f268b8 100644 (file)
@@ -105,11 +105,12 @@ class SearchUpdate {
                # Strip wiki '' and '''
                $text = preg_replace( "/''[']*/", " ", $text );
                wfProfileOut( "$fname-regexps" );
-               
-               $sql = "REPLACE  INTO $searchindex (si_page,si_title,si_text) VALUES ({$this->mId},'" .
-                 $db->strencode( Title::indexTitle( $this->mNamespace, $this->mTitle ) ) . "','" .
-                 $db->strencode( $text ) . "')";
-               $db->query( $sql, 'SearchUpdate::doUpdate' );
+                $db->replace( $searchindex, array(array('si_page')),
+                  array(
+                    'si_page' => $this->mId,
+                    'si_title' => $db->strencode( Title::indexTitle( $this->mNamespace, $this->mTitle ) ),
+                    'si_text' => $db->strencode( $text )
+                  ), 'SearchUpdate::doUpdate' );
                wfProfileOut( $fname );
        }
 }