1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Code optimization for speed and reduced memory usage.

This commit is contained in:
Cameron
2020-12-20 11:50:10 -08:00
parent 6b5cc07929
commit 601df26d51
91 changed files with 522 additions and 482 deletions

View File

@@ -360,7 +360,7 @@ if (!defined("PCLTRACE_LIB"))
// ----- Display
$v_again=0;
for ($i=0; $i<count($g_pcl_trace_entries); $i++)
for ($i=0, $iMax = count($g_pcl_trace_entries); $i< $iMax; $i++)
{
// ---- Row header
echo "<tr>";