1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 07:36:32 +02:00

e107 now loads 5x - 8x faster. Debug info now has consistent styling across themes.

This commit is contained in:
Cameron
2020-12-19 09:01:17 -08:00
parent 5b82c292b1
commit 2f780fca69
4 changed files with 186 additions and 13 deletions

View File

@@ -1942,10 +1942,12 @@ $text .= '</tr>';
$text .= '</thead>';
$text .= '<tbody>';
$libraries = e107::library('info');
$lib = e107::getLibrary();
$libraries = $lib->info();
foreach($libraries as $machineName => $library)
{
$details = e107::library('detect', $machineName);
$details = $lib->detect($machineName);
if(empty($details['name']))
{