Index: trunk/extensions/RecordAdmin/recordadmin.js |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | var input = jQuery( inputs[k] ); |
11 | 11 | if( input.attr('type') != 'checkbox' || input.attr('checked') ) { |
12 | 12 | var multi = input.val(); |
13 | | - if( typeof( multi ) == 'object' ) multi = multi.join('\\n'); |
| 13 | + if( typeof( multi ) == 'object' ) multi = multi.join('\n'); |
14 | 14 | var key = type + ':' + inputs[k].getAttribute('name'); |
15 | 15 | var hidden = jQuery( document.createElement( 'input' ) ); |
16 | 16 | hidden.attr( 'name', key ); |
Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -20,7 +20,6 @@ |
21 | 21 | |
22 | 22 | # Name to use for creating a new record either via RecordAdmin or a public form |
23 | 23 | $this->guid(); |
24 | | - |
25 | 24 | |
26 | 25 | # Make recordID's of articles created with public forms available via recordid tag |
27 | 26 | $wgParser->setHook( $wgRecordAdminTag, array( $this, 'expandTag' ) ); |