mirror of
https://github.com/e107inc/e107.git
synced 2025-08-15 02:57:15 +02:00
Code optimization for speed and reduced memory usage.
This commit is contained in:
@@ -1146,7 +1146,7 @@ class lancheck
|
||||
$input .= $diz;
|
||||
$message .= str_replace("\n","<br />",$diz);
|
||||
|
||||
for ($i=0; $i<count($_POST['newlang']); $i++)
|
||||
for ($i=0, $iMax = count($_POST['newlang']); $i< $iMax; $i++)
|
||||
{
|
||||
$notdef_start = "";
|
||||
$notdef_end = "\n";
|
||||
|
Reference in New Issue
Block a user