From 64f031b0fccc2e23f28add386e50b098c6b2c709 Mon Sep 17 00:00:00 2001 From: Justin Ridgewell Date: Sat, 20 Mar 2010 15:40:13 -0400 Subject: [PATCH] Don't set Cache->hash twice... --- app/cache.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cache.inc.php b/app/cache.inc.php index d9c37f63..83c43a7e 100644 --- a/app/cache.inc.php +++ b/app/cache.inc.php @@ -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) {