Index: trunk/phase3/includes/XmlFunctions.php |
— | — | @@ -18,9 +18,6 @@ |
19 | 19 | function HTMLnamespaceselector($selected = '', $allnamespaces = null, $includehidden=false) { |
20 | 20 | return Xml::namespaceSelector( $selected, $allnamespaces, $includehidden ); |
21 | 21 | } |
22 | | -function HTMLmonthelector($selected = '', $allmonths = null) { |
23 | | - return Xml::monthSelector( $selected, $allmonths ); |
24 | | -} |
25 | 22 | function wfSpan( $text, $class, $attribs=array() ) { |
26 | 23 | return Xml::span( $text, $class, $attribs ); |
27 | 24 | } |
— | — | @@ -62,7 +59,4 @@ |
63 | 60 | } |
64 | 61 | function wfIsWellFormedXmlFragment( $text ) { |
65 | 62 | return Xml::isWellFormedXmlFragment( $text ); |
66 | | -} |
67 | | - |
68 | | - |
69 | | - |
| 63 | +} |
\ No newline at end of file |
Index: trunk/phase3/includes/SpecialContributions.php |
— | — | @@ -419,13 +419,10 @@ |
420 | 420 | Xml::label( wfMsg( 'year' ), 'year' ) . ' '. |
421 | 421 | Xml::input( 'year', 4, $options['year'], array('id' => 'year', 'maxlength' => 4) ) . ' '. |
422 | 422 | Xml::label( wfMsg( 'month' ), 'month' ) . ' '. |
423 | | - xml::monthSelector( $options['month'], -1 ) . ' '. |
| 423 | + Xml::monthSelector( $options['month'], -1 ) . ' '. |
424 | 424 | Xml::submitButton( wfMsg( 'sp-contributions-submit' ) ) . |
425 | 425 | Xml::closeElement( 'p' ) . |
426 | 426 | '</fieldset>' . |
427 | 427 | Xml::closeElement( 'form' ); |
428 | 428 | return $f; |
429 | | -} |
430 | | - |
431 | | - |
432 | | -?> |
| 429 | +} |
\ No newline at end of file |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -123,7 +123,8 @@ |
124 | 124 | * Introduce "raw editing" mode for the watchlist, to allow bulk additions, |
125 | 125 | removals, and convenient exporting of watchlist contents |
126 | 126 | * Put an (undo) button on the page history page, for people with rollback |
127 | | - permission only. |
| 127 | + permission only |
| 128 | +* Option to jump to specified time period in user contributions |
128 | 129 | |
129 | 130 | == Bugfixes since 1.10 == |
130 | 131 | |