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

header performance - readable checks removed

This commit is contained in:
secretr
2012-10-24 08:45:18 +00:00
parent 353037fb5c
commit 60e265e699

View File

@@ -190,10 +190,8 @@ if (is_array($pref['e_meta_list']))
ob_start(); ob_start();
foreach($pref['e_meta_list'] as $val) foreach($pref['e_meta_list'] as $val)
{ {
if(is_readable(e_PLUGIN.$val."/e_meta.php")) // no checks fore existing file - performance
{ e107_include_once(e_PLUGIN.$val."/e_meta.php");
require_once(e_PLUGIN.$val."/e_meta.php");
}
} }
// content will be added later // content will be added later
// NOTE: not wise to do e_meta output, use JS Manager! // NOTE: not wise to do e_meta output, use JS Manager!