Index: trunk/extensions/CentralNotice/SpecialCentralNoticeLogs.php |
— | — | @@ -46,14 +46,14 @@ |
47 | 47 | |
48 | 48 | $htmlOut = ''; |
49 | 49 | |
50 | | - // Begin Allocation selection fieldset |
| 50 | + // Begin log selection fieldset |
51 | 51 | $htmlOut .= Xml::openElement( 'fieldset', array( 'class' => 'prefsection' ) ); |
52 | 52 | |
53 | 53 | $htmlOut .= Xml::openElement( 'form', array( 'method' => 'post' ) ); |
54 | 54 | $htmlOut .= Xml::element( 'h2', null, wfMsg( 'centralnotice-view-logs' ) ); |
55 | 55 | $htmlOut .= Xml::closeElement( 'form' ); |
56 | 56 | |
57 | | - // End Allocation selection fieldset |
| 57 | + // End log selection fieldset |
58 | 58 | $htmlOut .= Xml::closeElement( 'fieldset' ); |
59 | 59 | |
60 | 60 | $wgOut->addHTML( $htmlOut ); |
— | — | @@ -71,6 +71,16 @@ |
72 | 72 | global $wgOut; |
73 | 73 | |
74 | 74 | $htmlOut = ''; |
| 75 | + |
| 76 | + // Begin log fieldset |
| 77 | + $htmlOut .= Xml::openElement( 'fieldset', array( 'class' => 'prefsection' ) ); |
| 78 | + |
| 79 | + $htmlOut .= Xml::tags( 'p', null, |
| 80 | + '<i>Coming soon...</i>' |
| 81 | + ); |
| 82 | + |
| 83 | + // End log fieldset |
| 84 | + $htmlOut .= Xml::closeElement( 'fieldset' ); |
75 | 85 | |
76 | 86 | $wgOut->addHTML( $htmlOut ); |
77 | 87 | } |