From e5d8000f03e81f780cab77a439a86db6e0b37ad8 Mon Sep 17 00:00:00 2001 From: Joost van Dijk Date: Fri, 8 Jul 2016 14:08:51 +0200 Subject: [PATCH] Revert "fix issue with identifier with new tiqr client" This reverts commit 4e2581d65b4c589031df524b30627474eca9fa50. --- options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.php b/options.php index 071db794..304b289d 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); }