uniqid fix

This commit is contained in:
yuri
2018-10-31 15:58:02 +02:00
parent 41d6a0a099
commit 907655bb09
@@ -164,7 +164,7 @@ abstract class Base
throw new Error('Another installation process is currently running.');
}
$this->processId = uniqid();
$this->processId = uniqid('', true);
return $this->processId;
}