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

Library path fix.

This commit is contained in:
Cameron
2021-11-26 12:43:23 -08:00
parent 4cbdf3901a
commit 0171ab4e84
2 changed files with 4 additions and 2 deletions

View File

@@ -1997,7 +1997,9 @@ foreach($libraries as $machineName => $library)
$text .= '<tr>';
$text .= '<td>' . $name . '</td>';
$text .= '<td class="text-center">' . $provider . '</td>';
$text .= '<td class="smalltext">' . varset($details['library_path']) . '</td>';
$text .= '<td class="smalltext">' . varset($details['library_path']);
$text .= !empty($details['path']) ? '/'. $details['path'] : '';
$text .= '</td>';
$text .= '<td class="text-center">' . varset($details['version']) . '</td>';
$text .= '<td class="text-center">' . $status . '</td>';
$text .= '<td>' . varset($details['error_message']) . '</td>';

View File

@@ -30,7 +30,7 @@ if(!class_exists("hero_setup"))
{
if(!e107::getDb()->isEmpty('hero'))
{
return null;
return null;
}
$ret = e107::getXml(true)->e107Import(e_PLUGIN."hero/xml/install.xml");