Index: trunk/phase3/includes/ImagePage.php |
— | — | @@ -1001,7 +1001,7 @@ |
1002 | 1002 | $row .= "<td $selected style='white-space: nowrap;'>"; |
1003 | 1003 | if ( !$file->userCan( File::DELETED_FILE ) ) { |
1004 | 1004 | # Don't link to unviewable files |
1005 | | - $row .= '<span class="history-deleted">' . $wgLang->timeAndDate( $timestamp, true ) . '</span>'; |
| 1005 | + $row .= '<span class="history-deleted">' . $wgLang->timeanddate( $timestamp, true ) . '</span>'; |
1006 | 1006 | } elseif ( $file->isDeleted( File::DELETED_FILE ) ) { |
1007 | 1007 | if ( $local ) { |
1008 | 1008 | $this->preventClickjacking(); |
— | — | @@ -1009,7 +1009,7 @@ |
1010 | 1010 | # Make a link to review the image |
1011 | 1011 | $url = Linker::link( |
1012 | 1012 | $revdel, |
1013 | | - $wgLang->timeAndDate( $timestamp, true ), |
| 1013 | + $wgLang->timeanddate( $timestamp, true ), |
1014 | 1014 | array(), |
1015 | 1015 | array( |
1016 | 1016 | 'target' => $this->title->getPrefixedText(), |
— | — | @@ -1019,12 +1019,12 @@ |
1020 | 1020 | array( 'known', 'noclasses' ) |
1021 | 1021 | ); |
1022 | 1022 | } else { |
1023 | | - $url = $wgLang->timeAndDate( $timestamp, true ); |
| 1023 | + $url = $wgLang->timeanddate( $timestamp, true ); |
1024 | 1024 | } |
1025 | 1025 | $row .= '<span class="history-deleted">' . $url . '</span>'; |
1026 | 1026 | } else { |
1027 | 1027 | $url = $iscur ? $this->current->getUrl() : $this->current->getArchiveUrl( $img ); |
1028 | | - $row .= Xml::element( 'a', array( 'href' => $url ), $wgLang->timeAndDate( $timestamp, true ) ); |
| 1028 | + $row .= Xml::element( 'a', array( 'href' => $url ), $wgLang->timeanddate( $timestamp, true ) ); |
1029 | 1029 | } |
1030 | 1030 | $row .= "</td>"; |
1031 | 1031 | |
— | — | @@ -1085,7 +1085,7 @@ |
1086 | 1086 | $thumbnail = $file->transform( $params ); |
1087 | 1087 | $options = array( |
1088 | 1088 | 'alt' => wfMsg( 'filehist-thumbtext', |
1089 | | - $wgLang->timeAndDate( $timestamp, true ), |
| 1089 | + $wgLang->timeanddate( $timestamp, true ), |
1090 | 1090 | $wgLang->date( $timestamp, true ), |
1091 | 1091 | $wgLang->time( $timestamp, true ) ), |
1092 | 1092 | 'file-link' => true, |