diff options
author | Brion Vibber <brion@users.mediawiki.org> | 2004-11-21 07:36:46 +0000 |
---|---|---|
committer | Brion Vibber <brion@users.mediawiki.org> | 2004-11-21 07:36:46 +0000 |
commit | 426099ce51cf7f59721a771732419320ef3880a9 (patch) | |
tree | b2a81ca0ec396855f18bd79248eb09f48a8397cb /languages/LanguageNl.php | |
parent | 314955f2476cb7f863f8cbf8d3cb813a46f1d2ce (diff) | |
download | mediawikicore-426099ce51cf7f59721a771732419320ef3880a9.tar.gz mediawikicore-426099ce51cf7f59721a771732419320ef3880a9.zip |
Code formatting; clean up redundant method declarations.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6316
Diffstat (limited to 'languages/LanguageNl.php')
-rw-r--r-- | languages/LanguageNl.php | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/languages/LanguageNl.php b/languages/LanguageNl.php index 6d33c2990630..700aca95482d 100644 --- a/languages/LanguageNl.php +++ b/languages/LanguageNl.php @@ -905,13 +905,6 @@ class LanguageNl extends LanguageUtf8 { return $d; } - function time( $ts, $adj = false ) { - if ( $adj ) { $ts = $this->userAdjust( $ts ); } - - $t = substr( $ts, 8, 2 ) . ":" . substr( $ts, 10, 2 ); - return $t; - } - function timeanddate( $ts, $adj = false ) { return $this->date( $ts, $adj ) . " " . $this->time( $ts, $adj ); } @@ -919,8 +912,7 @@ class LanguageNl extends LanguageUtf8 { function getValidSpecialPages() { global $wgValidSpecialPagesNl; return $wgValidSpecialPagesNl; - } - + } function getSysopSpecialPages() { global $wgSysopSpecialPagesNl; @@ -941,8 +933,6 @@ class LanguageNl extends LanguageUtf8 { } } - function isRTL() { return false; } - # Inherit iconv(), ucfirst(), stripForSearch(), recodeForEdit(), recodeInput() # since they are same as English/Latin1 |