Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -75,7 +75,7 @@ |
76 | 76 | # Add an "edit with form" action link |
77 | 77 | if ( $wgRecordAdminEditWithForm ) { |
78 | 78 | $wgHooks['SkinTemplateTabs'][] = $this; |
79 | | - $qs = "wpType={$this->type}&wpRecord=" . $title->getPrefixedText(); |
| 79 | + $qs = "wpType={$this->type}&wpRecord=" . urlencode( $title->getPrefixedText() ); |
80 | 80 | $this->acturl = Title::makeTitle( NS_SPECIAL, 'RecordAdmin' )->getLocalURL( $qs ); |
81 | 81 | } |
82 | 82 | } |
Index: trunk/extensions/RecordAdmin/RecordAdmin.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | * @licence GNU General Public Licence 2.0 or later |
13 | 13 | */ |
14 | 14 | |
15 | | -define( 'RECORDADMIN_VERSION', '0.11.5, 2010-03-04' ); |
| 15 | +define( 'RECORDADMIN_VERSION', '0.11.6, 2010-03-05' ); |
16 | 16 | |
17 | 17 | $wgRecordAdminUseNamespaces = false; # Whether record articles should be in a namespace of the same name as their type |
18 | 18 | $wgRecordAdminCategory = 'Records'; # Category containing record types |