Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3286'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Jan 3, 2013
6 parents 4fe9653 + 0835021 + 26ee41a + be4158f + d42d41a + 97d4d4e commit bb1710e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Storage/Adapter/Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,9 @@ public function getItem($key, & $success = null, & $casToken = null)
return parent::getItem($key, $success, $casToken);
} elseif ($argn > 1) {
return parent::getItem($key, $success);
} else {
return parent::getItem($key);
}

return parent::getItem($key);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/Storage/Adapter/WinCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ protected function internalGetMetadata(& $normalizedKey)
$metadata = $info['ucache_entries'][1];
$this->normalizeMetadata($metadata);
return $metadata;
} else {
return false;
}

return false;
}

/* writing */
Expand Down

0 comments on commit bb1710e

Please sign in to comment.