Index: trunk/extensions/SemanticMediaWiki/specials/ExportRDF/SMW_SpecialExportRDF.php |
— | — | @@ -31,8 +31,8 @@ |
32 | 32 | if ($page=='') { //try to get GET parameter; simple way of calling the export
|
33 | 33 | $page = $wgRequest->getVal( 'page' );
|
34 | 34 | } else {
|
35 | | - //FIXME: this might be needed with MediaWiki 1.9 final, but it would be wrong in 1.8
|
36 | | - //$page = urldecode($page);
|
| 35 | + //this is needed since MediaWiki 1.8, but it is wrong for 1.7
|
| 36 | + $page = urldecode($page);
|
37 | 37 | }
|
38 | 38 |
|
39 | 39 | if ($page=='') { //try to get POST list; some settings are only available via POST
|
Index: trunk/extensions/SemanticMediaWiki/INSTALL |
— | — | @@ -22,7 +22,7 @@ |
23 | 23 | |
24 | 24 | == Requirements == |
25 | 25 | |
26 | | -- MediaWiki 1.7.* or greater (tested up to 1.7.1) |
| 26 | +- MediaWiki 1.8.* or greater (tested up to 1.8.2) |
27 | 27 | - PHP 5.x or greater |
28 | 28 | - MySQL >= 4.0.14 |
29 | 29 | - For the ontology import feature (only!), you need RAP, |