1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-11-22 04:23:01 +00:00

pageindex: Unset stray global

This commit is contained in:
Starbeamrainbowlabs 2019-12-23 15:42:40 +00:00
parent 85fb5cd6c1
commit ead1663849
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -89,4 +89,5 @@ else
$pageindex = json_decode(file_get_contents($paths->pageindex)); $pageindex = json_decode(file_get_contents($paths->pageindex));
$env->perfdata->pageindex_decode_time = round((microtime(true) - $pageindex_read_start)*1000, 3); $env->perfdata->pageindex_decode_time = round((microtime(true) - $pageindex_read_start)*1000, 3);
header("x-pageindex-decode-time: " . $env->perfdata->pageindex_decode_time . "ms"); header("x-pageindex-decode-time: " . $env->perfdata->pageindex_decode_time . "ms");
unset($pageindex_read_start);
} }