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:
@@ -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>";
|
||||
|
Reference in New Issue
Block a user