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 @@
868868
869869 /* wincache_ucache_set returns an empty array on success if $value
870870 was an array, bool otherwise */
871 - return ( is_array( $value ) && $result === array() ) || $result;
 871+ return ( is_array( $result ) && $result === array() ) || $result;
872872 }
873873
874874 /**

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r78322Follow-up r66364: wincache fixes...btongminh20:04, 13 December 2010

Comments

#Comment by Bryan (talk | contribs)   12:51, 14 December 2010

Thanks

Status & tagging log