r105322 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r105321‎ | r105322 | r105323 >
Date:18:15, 6 December 2011
Author:brion
Status:ok (Comments)
Tags:
Comment:
Followup r92081: SQL fix for cleanupUploadStash.php on PostgreSQL (bug 32822)
Modified paths:
  • /trunk/phase3/maintenance/cleanupUploadStash.php (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/cleanupUploadStash.php
@@ -46,7 +46,7 @@
4747 $res = $dbr->select(
4848 'uploadstash',
4949 'us_key',
50 - 'us_timestamp < ' . $dbr->timestamp( time() - $wgUploadStashMaxAge ),
 50+ 'us_timestamp < ' . $dbr->addQuotes( $dbr->timestamp( time() - $wgUploadStashMaxAge ) ),
5151 __METHOD__
5252 );
5353

Follow-up revisions

RevisionCommit summaryAuthorDate
r107923Manually merge r105322reedy19:17, 3 January 2012

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r92081Added us_status column for future expansion re Bryan's suggestion...raindrift19:08, 13 July 2011

Comments

#Comment by Brion VIBBER (talk | contribs)   18:19, 6 December 2011

Should be merged to 1.18 for point release fix.

Status & tagging log