Index: branches/wmf/1.17wmf1/extensions/MobileFrontend/library/WURFL/Storage/Mwmemcache.php |
— | — | @@ -51,7 +51,7 @@ |
52 | 52 | public function load( $objectId ) { |
53 | 53 | global $wgMemc; |
54 | 54 | $value = $wgMemc->get( $this->encode( $this->namespace, $objectId ) ); |
55 | | - return $value ? $value : null; // WURFL expects null on cache miss |
| 55 | + return ( $value !== false ) ? $value : null; // WURFL expects null on cache miss |
56 | 56 | } |
57 | 57 | |
58 | 58 | public function clear() { |