r83489 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r83488
|
r83489
|
r83490
>
Date:
22:58, 7 March 2011
Author:
reedy
Status:
ok
Tags:
Comment:
Fix
r83390
, need to do where ipb_deleted IS NULL as we're left joining in the table, so it can be null
Duh
Modified paths:
/trunk/phase3/includes/api/ApiQueryBase.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/api/ApiQueryBase.php
—
—
@@ -491,7 +491,7 @@
492
492
493
493
// Don't show hidden names
494
494
if ( !$userCanViewHiddenUsers ) {
495
- $this->addWhereFld( 'ipb_deleted', 0 );
495
+ $this->addWhere( 'ipb_deleted = 0 OR ipb_deleted IS NULL' );
496
496
}
497
497
}
498
498
}
Follow-up revisions
Revision
Commit summary
Author
Date
r83490
MFT
r83489
reedy
23:02, 7 March 2011
r85354
MFT
r82518
,
r82530
,
r82538
,
r82547
,
r82550
,
r82565
,
r82572
,
r82608
,
r82696
,
r...
demon
18:25, 4 April 2011
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r83390
* (
bug 27897
) list=allusers and list=users list hidden users...
reedy
17:59, 6 March 2011
Status & tagging log
18:26, 4 April 2011
😂
(
talk
|
contribs
)
changed the
tags
for r83489
[
removed:
1.17]
23:16, 7 March 2011
Catrope
(
talk
|
contribs
)
changed the
status
of r83489
[
removed:
new
added:
ok]
22:59, 7 March 2011
Reedy
(
talk
|
contribs
)
changed the
tags
for r83489
[
added:
1.17]