mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-07 20:04:27 +02:00
replace md5 with str_replace
This commit is contained in:
@@ -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);
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user