replace md5 with str_replace

This commit is contained in:
monte.ohrt
2009-12-28 17:41:27 +00:00
parent 8ad3fade36
commit 5d6b87d9a1

View File

@@ -28,7 +28,7 @@ class Smarty_Internal_TemplateCompilerBase {
*/ */
public function __construct() public function __construct()
{ {
$this->nocache_hash = md5(uniqid(rand(),true)); $this->nocache_hash = str_replace('.','_',uniqid(rand(),true));
} }
// abstract function doCompile($_content); // abstract function doCompile($_content);
/** /**