diff options
Diffstat (limited to 'paste/include/storage/MysqlStorage.php')
-rw-r--r-- | paste/include/storage/MysqlStorage.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/paste/include/storage/MysqlStorage.php b/paste/include/storage/MysqlStorage.php index 14aefa6..8e16536 100644 --- a/paste/include/storage/MysqlStorage.php +++ b/paste/include/storage/MysqlStorage.php @@ -78,7 +78,13 @@ INDEX (nick) { global $config; - $name = sha1(date('r') . rand(1000, getrandmax())); + if (!is_subclass_of($config['id_generator'], 'IdGeneratorEngine')) + { + header('HTTP/1.0 503 Service Unavailable'); + die('Invalid config'); + } + + $name = $config['id_generator']->generateId(); if ($stmt = $this->mysql->prepare( 'INSERT INTO ' . $this->table . ' (pid, nick, language, content, |