Skip to content

Commit

Permalink
Don't set Cache->hash twice...
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Ridgewell authored and kolber committed Mar 22, 2010
1 parent 82cd5b4 commit 64f031b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/cache.inc.php
Expand Up @@ -63,7 +63,7 @@ function create_hash() {
# create a collection of every file inside the public folder
$public = $this->collate_files('./public');
# create an md5 of the two collections
return $this->hash = md5($content.$templates.$public);
return md5($content.$templates.$public);
}

function collate_files($dir) {
Expand Down

0 comments on commit 64f031b

Please sign in to comment.