Skip to content
Snippets Groups Projects

release fix : masonry id cache regression

Merged Patrick Barroca requested to merge release_8.0.153_chop_chop into master
Compare and
9 files
+ 124
135
Preferences
Compare changes
Files
9
@@ -159,4 +159,13 @@ class Class_TimeSource {
public function yesterday() {
return strtotime('yesterday', $this->time());
}
/**
* @see https://www.php.net/manual/en/function.uniqid.php
* php uniqid is time dependent therefore it is entitled to be provided by time source
*/
public function uniqid(string $prefix='', bool $more_entropy=false) : string {
return uniqid($prefix, $more_entropy);
}
}