mirror of
https://github.com/e107inc/e107.git
synced 2025-08-07 23:26:41 +02:00
Code optimization for speed and reduced memory usage.
This commit is contained in:
@@ -1299,7 +1299,7 @@ $columnInfo = array(
|
||||
{
|
||||
$fpath = str_replace(e_DOWNLOAD,"",$file_array[$counter]['path']).$file_array[$counter]['fname'];
|
||||
$selected = '';
|
||||
if (stristr($fpath, $download_url) !== FALSE)
|
||||
if (stripos($fpath, $download_url) !== false)
|
||||
{
|
||||
$selected = " selected='selected'";
|
||||
$found = 1;
|
||||
|
Reference in New Issue
Block a user