From 47dfee907cf3f75ffe622f9ce2add58e17aaa4f5 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Thu, 14 Dec 2023 09:24:20 +0800 Subject: [PATCH] + Discards the contents of the topmost ob and turns off this ob. --- module/user/control.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/user/control.php b/module/user/control.php index 2ea24107db..2def090c79 100755 --- a/module/user/control.php +++ b/module/user/control.php @@ -1134,6 +1134,7 @@ class user extends control public function refreshRandom() { $rand = updateSessionRandom(); + ob_end_clean(); echo (string)$rand; } }