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 @@
47
47
$res = $dbr->select(
48
48
'uploadstash',
49
49
'us_key',
50
- 'us_timestamp < ' . $dbr->timestamp( time() - $wgUploadStashMaxAge ),
50
+ 'us_timestamp < ' . $dbr->addQuotes( $dbr->timestamp( time() - $wgUploadStashMaxAge ) ),
51
51
__METHOD__
52
52
);
53
53
Follow-up revisions
Revision
Commit summary
Author
Date
r107923
Manually merge
r105322
reedy
19:17, 3 January 2012
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r92081
Added us_status column for future expansion re Bryan's suggestion...
raindrift
19: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
19:17, 3 January 2012
Reedy
(
talk
|
contribs
)
changed the
tags
for r105322
[
removed:
1.18]
18:19, 6 December 2011
Brion VIBBER
(
talk
|
contribs
)
changed the
tags
for r105322
[
added:
1.18]
18:18, 6 December 2011
😂
(
talk
|
contribs
)
changed the
status
of r105322
[
removed:
new
added:
ok]