* Fixed a bug where moving a page would cause the following SQL error when
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 24 May 2005 14:56:07 +0000 (14:56 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 24 May 2005 14:56:07 +0000 (14:56 +0000)
commit97bfb998ee07677a208b0578a7cc67d6e2936849
treefedd2e2b8c43dee1e2463a5d0fc6a51be62c5d3a
parent0548b047b35739229c948f159f39bd0451ee6ba4
* Fixed a bug where moving a page would cause the following SQL error when
  updating the searchindex:
    UPDATE `Array` SET si_title='page 1' WHERE si_page='2910'
  from within function "SearchMySQL4::updateTitle". MySQL returned error
  "1146: Table 'HEAD.Array' doesn't exist (localhost)".
  The new query causes the following to be executed:
    UPDATE `searchindex` SET si_title='page 1' WHERE si_page='2909'
  (somebody more familiar with the the whole searchindexing code please review
  the while move process)
includes/SearchMySQL.php