aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/convertUtf8.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@users.mediawiki.org>2005-05-26 10:23:36 +0000
committerBrion Vibber <brion@users.mediawiki.org>2005-05-26 10:23:36 +0000
commite0ce5a322e41cf39f110fd4fa3c2c5c849964252 (patch)
tree7d2e635a071c187c10132bc6df4acd75fd332452 /maintenance/convertUtf8.php
parent505c2a044792a52250b628f14d3db378ea8244e6 (diff)
downloadmediawikicore-e0ce5a322e41cf39f110fd4fa3c2c5c849964252.tar.gz
mediawikicore-e0ce5a322e41cf39f110fd4fa3c2c5c849964252.zip
* links and brokenlinks tables merged to pagelinks; this will reduce pain
dealing with moves and deletes of widely-linked pages. The updaters should be fixed up to understand future versions without the tables there without breaking upgrades.
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9199
Diffstat (limited to 'maintenance/convertUtf8.php')
-rw-r--r--maintenance/convertUtf8.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/convertUtf8.php b/maintenance/convertUtf8.php
index 8e9c5cc804ed..14096cf1510a 100644
--- a/maintenance/convertUtf8.php
+++ b/maintenance/convertUtf8.php
@@ -156,7 +156,7 @@ class UtfUpdater {
$this->convertTable( 'recentchanges', 'rc_id',
array( 'rc_user_text', 'rc_title', 'rc_comment' ) );
- $this->convertTable( 'brokenlinks', 'bl_to' );
+ $this->convertTable( 'pagelinks', 'pl_title' );
$this->convertTable( 'categorylinks', 'cl_to' );
$this->convertTable( 'imagelinks', 'il_to' );
$this->convertTable( 'watchlist', 'wl_title' );