Index: trunk/phase3/includes/installer/DatabaseUpdater.php |
— | — | @@ -237,6 +237,7 @@ |
238 | 238 | |
239 | 239 | if( isset( $what['purge'] ) ) { |
240 | 240 | $this->purgeCache(); |
| 241 | + $this->rebuildLocalisationCache(); |
241 | 242 | } |
242 | 243 | if ( isset( $what['stats'] ) ) { |
243 | 244 | $this->checkStats(); |
— | — | @@ -652,7 +653,7 @@ |
653 | 654 | /** |
654 | 655 | * Rebuilds the localisation cache |
655 | 656 | */ |
656 | | - protected function doRebuildLocalisationCache() { |
| 657 | + protected function rebuildLocalisationCache() { |
657 | 658 | /** |
658 | 659 | * @var $cl RebuildLocalisationCache |
659 | 660 | */ |
Index: trunk/phase3/includes/installer/MysqlUpdater.php |
— | — | @@ -181,7 +181,6 @@ |
182 | 182 | array( 'modifyField', 'user_properties', 'up_property', 'patch-up_property.sql' ), |
183 | 183 | array( 'addTable', 'uploadstash', 'patch-uploadstash.sql' ), |
184 | 184 | array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql'), |
185 | | - array( 'doRebuildLocalisationCache' ), |
186 | 185 | |
187 | 186 | // 1.19 |
188 | 187 | array( 'addTable', 'config', 'patch-config.sql' ), |
Index: trunk/phase3/includes/installer/OracleUpdater.php |
— | — | @@ -36,7 +36,6 @@ |
37 | 37 | array( 'addIndex', 'user', 'i02', 'patch-user_email_index.sql' ), |
38 | 38 | array( 'modifyField', 'user_properties', 'up_property', 'patch-up_property.sql' ), |
39 | 39 | array( 'addTable', 'uploadstash', 'patch-uploadstash.sql' ), |
40 | | - array( 'doRebuildLocalisationCache' ), |
41 | 40 | |
42 | 41 | //1.19 |
43 | 42 | array( 'addTable', 'config', 'patch-config.sql' ), |
Index: trunk/phase3/includes/installer/SqliteUpdater.php |
— | — | @@ -59,7 +59,6 @@ |
60 | 60 | array( 'addIndex', 'user', 'user_email', 'patch-user_email_index.sql' ), |
61 | 61 | array( 'addTable', 'uploadstash', 'patch-uploadstash.sql' ), |
62 | 62 | array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql'), |
63 | | - array( 'doRebuildLocalisationCache' ), |
64 | 63 | |
65 | 64 | // 1.19 |
66 | 65 | array( 'addTable', 'config', 'patch-config.sql' ), |