Fix stray comma from r109537
authorSam Reed <reedy@users.mediawiki.org>
Thu, 19 Jan 2012 15:22:28 +0000 (15:22 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Thu, 19 Jan 2012 15:22:28 +0000 (15:22 +0000)
maintenance/cleanupUploadStash.php

index 72118e6..931a4ff 100644 (file)
@@ -47,7 +47,7 @@ class UploadStashCleanup extends Maintenance {
                        'uploadstash',
                        'us_key',
                        'us_timestamp < ' . $dbr->addQuotes( $dbr->timestamp( time() - $wgUploadStashMaxAge ) ),
-                       __METHOD__,
+                       __METHOD__
                );
 
                if( !is_object( $res ) || $res->numRows() == 0 ) {