Index: trunk/phase3/includes/conf/Conf.php |
— | — | @@ -114,9 +114,10 @@ |
115 | 115 | * @return Conf child |
116 | 116 | */ |
117 | 117 | public static function load( $wiki = false ) { |
| 118 | + throw new MWException( "Not working yet, don't attempt to use this" ); |
118 | 119 | if( !self::$__instance ) { |
119 | | - global $wgConfiguration; |
120 | | - self::$__instance = self::newFromSettings( $wgConfiguration ); |
| 120 | + /**global $wgConfiguration; |
| 121 | + self::$__instance = self::newFromSettings( $wgConfiguration );*/ |
121 | 122 | } |
122 | 123 | if( $wiki && $wiki != self::$__instance->getWikiId() ) { |
123 | 124 | // Load configuration for a different wiki, not sure how |