Skip to content

Commit

Permalink
fixing error in import map when cache is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
gwoo committed Jun 14, 2009
1 parent f9339e3 commit 9b4e08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/configure.php
Expand Up @@ -926,7 +926,7 @@ function &getInstance() {
static $instance = array();
if (!$instance) {
$instance[0] =& new App();
$instance[0]->__map = Cache::read('file_map', '_cake_core_');
$instance[0]->__map = (array)Cache::read('file_map', '_cake_core_');
}
return $instance[0];
}
Expand Down

0 comments on commit 9b4e08e

Please sign in to comment.