Index: trunk/extensions/SemanticForms/includes/SF_Utils.php |
— | — | @@ -296,7 +296,7 @@ |
297 | 297 | $output = $wgOut; |
298 | 298 | } else { |
299 | 299 | $output = $parser->getOutput(); |
300 | | - self::addJavascriptFiles( $parser ); |
| 300 | + self::addJavascriptFiles( $parser ); |
301 | 301 | } |
302 | 302 | |
303 | 303 | $output->addModules( 'ext.semanticforms.main' ); |
— | — | @@ -306,7 +306,7 @@ |
307 | 307 | $output->addModules( 'ext.semanticforms.submit' ); |
308 | 308 | $output->addModules( 'ext.smw.tooltips' ); |
309 | 309 | $output->addModules( 'ext.smw.sorttable' ); |
310 | | - } |
| 310 | + } |
311 | 311 | |
312 | 312 | /** |
313 | 313 | * Returns an array of all form names on this wiki. |
— | — | @@ -925,11 +925,11 @@ |
926 | 926 | } |
927 | 927 | |
928 | 928 | static function loadScriptsForPopupForm( &$parser ) { |
929 | | - $parser->getOutput()->addModules( 'ext.semanticforms.popupformedit' ); |
| 929 | + $parser->getOutput()->addModules( 'ext.semanticforms.popupformedit' ); |
930 | 930 | return true; |
931 | 931 | } |
932 | 932 | |
933 | | - /** |
| 933 | + /** |
934 | 934 | * array_merge_recursive merges arrays, but it converts values with duplicate |
935 | 935 | * keys to arrays rather than overwriting the value in the first array with the duplicate |
936 | 936 | * value in the second array, as array_merge does. |