Index: branches/SemanticMaps0.7.x/includes/forminputs/SM_FormInput.php |
— | — | @@ -110,7 +110,8 @@ |
111 | 111 | |
112 | 112 | $validator = new Validator( 'form', false ); // TODO |
113 | 113 | |
114 | | - foreach ( $params as $key => $value ) { |
| 114 | + $parameters = array(); |
| 115 | + foreach ( $mapProperties as $key => $value ) { |
115 | 116 | if ( !is_array( $value ) && !is_object( $value ) ) { |
116 | 117 | $parameters[$key] = $value; |
117 | 118 | } |
Index: branches/SemanticMaps0.7.x/SemanticMaps.php |
— | — | @@ -36,7 +36,7 @@ |
37 | 37 | die( '<b>Error:</b> You need to have <a href="http://semantic-mediawiki.org/wiki/Semantic_MediaWiki">Semantic MediaWiki</a> installed in order to use <a href="http://www.mediawiki.org/wiki/Extension:Semantic Maps">Semantic Maps</a>.<br />' ); |
38 | 38 | } |
39 | 39 | |
40 | | -define( 'SM_VERSION', '0.7.6' ); |
| 40 | +define( 'SM_VERSION', '0.7.6.1' ); |
41 | 41 | |
42 | 42 | $wgExtensionCredits[defined( 'SEMANTIC_EXTENSION_TYPE' ) ? 'semantic' : 'other'][] = array( |
43 | 43 | 'path' => __FILE__, |