http://www.mediawiki.org/wiki/Special:Code/MediaWiki/65378

Revision: 65378
Author:   tparscal
Date:     2010-04-21 13:18:10 +0000 (Wed, 21 Apr 2010)

Log Message:
-----------
Fixed bug that causes update.php to throw errors - the schema function was 
using the wrong table name.

Modified Paths:
--------------
    trunk/extensions/UsabilityInitiative/PrefSwitch/PrefSwitch.hooks.php

Modified: trunk/extensions/UsabilityInitiative/PrefSwitch/PrefSwitch.hooks.php
===================================================================
--- trunk/extensions/UsabilityInitiative/PrefSwitch/PrefSwitch.hooks.php        
2010-04-21 12:27:59 UTC (rev 65377)
+++ trunk/extensions/UsabilityInitiative/PrefSwitch/PrefSwitch.hooks.php        
2010-04-21 13:18:10 UTC (rev 65378)
@@ -12,7 +12,7 @@
        
        public static function schema() {
                global $wgExtNewTables;
-               $wgExtNewTables[] = array( 'prefswitch', dirname( __FILE__ ) . 
'/PrefSwitch.sql' );
+               $wgExtNewTables[] = array( 'prefswitch_survey', dirname( 
__FILE__ ) . '/PrefSwitch.sql' );
                return true;
        }
        public static function personalUrls( &$personal_urls, &$title ) {



_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to