Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -238,11 +238,11 @@ |
239 | 239 | $wgOut->addWikiText( "==" . wfMsg( 'recordadmin-create', $type ) . "==\n" ); |
240 | 240 | $wgOut->addHTML( |
241 | 241 | '<table class="recordadmin-create">' |
242 | | - . '<tr><td class="recordadmin-create-id"><b>' . wfMsg( 'recordadmin-recordid' ) . '</b> ' . Xml::element( 'input', array( 'name' => 'wpTitle', 'size' => 30, 'value' => $wpTitle ) ) |
| 242 | + . '<tr><td class="recordadmin-create-id"><b>' . wfMsg( 'recordadmin-recordid' ) . '</b> ' . Xml::element( 'input', array( id => 'ra-title', 'name' => 'wpTitle', 'size' => 30, 'value' => $wpTitle ) ) |
243 | 243 | . ' ' . Xml::element( 'input', array( 'name' => 'wpInvert', 'type' => 'checkbox' ) ) . ' ' . wfMsg( 'recordadmin-invert' ) |
244 | 244 | . '</td></tr>' |
245 | 245 | . '<tr><td>' . $this->form . '</td></tr>' |
246 | | - . '<tr><td>' . Xml::element( 'input', array( 'type' => 'hidden', 'name' => 'wpType', 'value' => $type ) ) . '</td></tr>' |
| 246 | + . '<tr><td>' . Xml::element( 'input', array( 'type' => 'hidden', 'id' => 'ra-type', 'name' => 'wpType', 'value' => $type ) ) . '</td></tr>' |
247 | 247 | . '<tr><td>' |
248 | 248 | . Xml::element( 'input', array( 'type' => 'submit', 'name' => 'wpFind', 'id' => 'ra-find', 'value' => wfMsg( 'recordadmin-buttonsearch' ) ) ) |
249 | 249 | . Xml::element( 'input', array( 'type' => 'submit', 'name' => 'wpCreate', 'id' => 'ra-create', 'value' => wfMsg( 'recordadmin-buttoncreate' ) ) ) |
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.0, 2010-02-18' ); |
| 15 | +define( 'RECORDADMIN_VERSION', '0.11.1, 2010-02-26' ); |
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 |