Just for the looks

- only add space if version number from module is found
This commit is contained in:
Christoph Hummer
2023-10-24 11:54:52 +02:00
committed by GitHub
parent bcedb464b0
commit d008f5a5f0

View File

@@ -79,9 +79,9 @@ switch ($_POST['table']) {
$supporthtml = "<span id='link$modname'><a href='$supporturl' target='_blank'><i title='"._("Support page $pluginname")."' class='fa fa-phone-square'></i></a></span>" ;
}
}
if (isset($module["version"])) $version = "(".$module["version"].")" ; else $version = "" ;
if (isset($module["version"])) $version = " (".$module["version"].")" ; else $version = "" ;
$html .= "<td>$modname $version$supporthtml</td>" ;
$html .= "<td>$modname$version$supporthtml</td>" ;
$html .= "<td>{$module['description']}</td><td id=\"status$modname\">{$module['state']}</td><td>{$module['type']}</td>";
$text = "" ;