Fix bug - function syntax

This commit is contained in:
towards-a-new-leftypol 2024-12-31 02:26:48 -05:00
parent f11c4cb1e7
commit e21a01dba6
1 changed files with 1 additions and 1 deletions

View File

@ -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);