Skip to content

Commit

Permalink
FNV132/SHA1 -> MD5
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jan 6, 2015
1 parent c1049c8 commit 2a8ae58
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions framework/Autoloader_Cache/lib/Horde/Autoloader/Cache.php
Expand Up @@ -82,8 +82,7 @@ public function __construct()
: '';
$key .= '|' . __FILE__;

$this->_cachekey = self::PREFIX . '_' .
hash(PHP_MINOR_VERSION >= 4 ? 'fnv132' : 'sha1', $key);
$this->_cachekey = self::PREFIX . '_' . hash('md5', $key);
$this->_storage = new Horde_Autoloader_Cache_Bootstrap();

$data = $this->_storage->get($this->_cachekey);
Expand Down

0 comments on commit 2a8ae58

Please sign in to comment.