r96647 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r96646
|
r96647
|
r96648
>
Date:
05:17, 9 September 2011
Author:
nikerabbit
Status:
ok
Tags:
Comment:
Followup
r96543
, + is not the correct thing to use here
Modified paths:
/trunk/phase3/includes/LogEventsList.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/LogEventsList.php
—
—
@@ -976,7 +976,7 @@
977
977
$info = array(
978
978
'tables' => $tables,
979
979
'fields' => $fields,
980
- 'conds' => $conds + $this->mConds,
980
+ 'conds' => array_merge( $conds, $this->mConds ),
981
981
'options' => $options,
982
982
'join_conds' => $joins,
983
983
);
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r96543
Change LogEventsList to use query info from DatabaseLogEntry....
nikerabbit
08:46, 8 September 2011
Status & tagging log
05:57, 9 September 2011
Aaron Schulz
(
talk
|
contribs
)
changed the
status
of r96647
[
removed:
new
added:
ok]