Optional thumbnail generation by client request, using thumb.php. This removes any...
[lhc/web/wiklou.git] / includes / SpecialNewimages.php
index 55b43f6..27628d8 100644 (file)
@@ -88,9 +88,9 @@ function wfSpecialNewimages() {
                $img = Image::newFromTitle( $nt );
                $ul = $sk->makeLinkObj( Title::makeTitle( NS_USER, $ut ), $ut );
 
-               $gallery->add( $img, $ul.'<br /><i>'.$wgLang->timeanddate( $s->img_timestamp, true ).'</i><br />' );
+               $gallery->add( $img, "$ul<br />\n<i>".$wgLang->timeanddate( $s->img_timestamp, true )."</i><br />\n" );
                
-               $timestamp = wfTImestamp( TS_MW, $s->img_timestamp );
+               $timestamp = wfTimestamp( TS_MW, $s->img_timestamp );
                if( empty( $firstTimestamp ) ) {
                        $firstTimestamp = $timestamp;
                }
@@ -118,7 +118,7 @@ function wfSpecialNewimages() {
        /**
         * Paging controls...
         */
-       $now = wfTimestamp( TS_MW );
+       $now = wfTimestampNow();
        $date = $wgLang->timeanddate( $now );
        $dateLink = $sk->makeKnownLinkObj( $titleObj, wfMsg( 'rclistfrom', $date ), 'from=' . $now );