From e21a01dba61b9bb19a91cd99800b9ea8fbd5b639 Mon Sep 17 00:00:00 2001 From: towards-a-new-leftypol Date: Tue, 31 Dec 2024 02:26:48 -0500 Subject: [PATCH] Fix bug - function syntax --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index f331edc9..18fdc961 100644 --- a/post.php +++ b/post.php @@ -1059,7 +1059,7 @@ function handle_post(){ error($config['error']['spam_noticer'] . $spam_noticer_result->reason); } - $debug['time']['post']['spam_noticer'] = round(($microtime(true) - $time_1) * 1000, 2) . 'ms'; + $debug['time']['post']['spam_noticer'] = round((microtime(true) - $time_1) * 1000, 2) . 'ms'; } $time_3 = microtime(true);