r78373 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r78372
|
r78373
|
r78374
>
Date:
12:47, 14 December 2010
Author:
demon
Status:
ok (
Comments
)
Tags:
Comment:
Fix for
r78322
, check $result not $value
Modified paths:
/trunk/phase3/includes/BagOStuff.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/BagOStuff.php
—
—
@@ -867,7 +867,7 @@
868
868
869
869
/* wincache_ucache_set returns an empty array on success if $value
870
870
was an array, bool otherwise */
871
- return ( is_array( $value ) && $result === array() ) || $result;
871
+ return ( is_array( $result ) && $result === array() ) || $result;
872
872
}
873
873
874
874
/**
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r78322
Follow-up
r66364
: wincache fixes...
btongminh
20:04, 13 December 2010
Comments
#
Comment by
Bryan
(
talk
|
contribs
)
12:51, 14 December 2010
Thanks
Status & tagging log
12:51, 14 December 2010
Bryan
(
talk
|
contribs
)
changed the
status
of r78373
[
removed:
new
added:
ok]