Index: trunk/phase3/includes/resourceloader/ResourceLoaderContext.php |
— | — | @@ -73,6 +73,8 @@ |
74 | 74 | */ |
75 | 75 | public static function expandModuleNames( $modules ) { |
76 | 76 | $retval = array(); |
| 77 | + // For backwards compatibility with an earlier hack, replace ! with . |
| 78 | + $modules = str_replace( '!', '.', $modules ); |
77 | 79 | $exploded = explode( '|', $modules ); |
78 | 80 | foreach ( $exploded as $group ) { |
79 | 81 | if ( strpos( $group, ',' ) === false ) { |