updated routing to fix several issues.
This commit is contained in:
2
laravel/cache/drivers/apc.php
vendored
2
laravel/cache/drivers/apc.php
vendored
@@ -39,7 +39,7 @@ class APC extends Driver {
|
||||
*/
|
||||
protected function retrieve($key)
|
||||
{
|
||||
if ( ! is_null($cache = apc_fetch($this->key.$key)))
|
||||
if (($cache = apc_fetch($this->key.$key)) !== false)
|
||||
{
|
||||
return $cache;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user