From 3e95b750c641f3bccb45e9921d073dfeea80af6c Mon Sep 17 00:00:00 2001 From: Jim Driscoll Date: Wed, 30 May 2018 13:37:39 +0100 Subject: [PATCH] Make $this->_SESSID a number as expected rather than hex --- opensrs/Ops.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opensrs/Ops.php b/opensrs/Ops.php index 56598afc..22df1b96 100644 --- a/opensrs/Ops.php +++ b/opensrs/Ops.php @@ -33,7 +33,7 @@ public function __construct($args = false) } } - $this->_SESSID = uniqid(); + $this->_SESSID = microtime(true); $this->_MSGCNT = 0; }