diff --git a/options.php b/options.php index 304b289d..071db794 100644 --- a/options.php +++ b/options.php @@ -43,5 +43,5 @@ $userStorage = Tiqr_UserStorage::getStorage($options['userstorage']['type'], $options['userstorage']); function generate_id($length = 4) { - return base_convert(time(),10,36) . '-' . base_convert(rand(0, pow(36,$length)),10,36); + return base_convert(time(),10,36) . base_convert(rand(0, pow(36,$length)),10,36); }