Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -213,6 +213,7 @@ |
214 | 214 | 'jumpto', |
215 | 215 | 'jumptonavigation', |
216 | 216 | 'jumptosearch', |
| 217 | + 'footermessage', |
217 | 218 | ), |
218 | 219 | 'links' => array( |
219 | 220 | 'aboutsite', |
Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -222,9 +222,12 @@ |
223 | 223 | ?> <li id="<?php echo$aLink?>"><?php $this->html($aLink) ?></li> |
224 | 224 | <?php } |
225 | 225 | } |
| 226 | + if( !wfEmptyMsg( 'footermessage' ) { |
| 227 | +?> <li id="footermessage"><?php $this->msgWiki('footermessage') ?></li> |
| 228 | + |
| 229 | +<?php } |
226 | 230 | ?> |
227 | | - <li id="footermessage"><?php $this->msgWiki('footermessage') ?></li> |
228 | | - </ul> |
| 231 | + </ul> |
229 | 232 | </div> |
230 | 233 | </div> |
231 | 234 | <?php $this->html('bottomscripts'); /* JS call to runBodyOnloadHook */ ?> |
Index: trunk/phase3/skins/Modern.php |
— | — | @@ -225,6 +225,10 @@ |
226 | 226 | ?> <li id="<?php echo$aLink?>"><?php $this->html($aLink) ?></li> |
227 | 227 | <?php } |
228 | 228 | } |
| 229 | + if( !wfEmptyMsg( 'footermessage' ) { |
| 230 | +?> <li id="footermessage"><?php $this->msgWiki('footermessage') ?></li> |
| 231 | + |
| 232 | +<?php } |
229 | 233 | ?> |
230 | 234 | </ul> |
231 | 235 | <?php echo $this->html("poweredbyico"); ?> |