mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-27 10:00:41 +00:00
add missing column to table headers
This commit is contained in:
parent
8540d591cd
commit
d1fc54d1b3
|
|
@ -57,7 +57,7 @@ class SeedDMS_View_Info extends SeedDMS_Theme_Style {
|
|||
$this->contentHeading(getMLText("seeddms_info"));
|
||||
echo "<table class=\"table table-condensed table-sm\">\n";
|
||||
echo "<thead>\n<tr>\n";
|
||||
echo "<th>".getMLText("name")."</th>\n";
|
||||
echo "<th>".getMLText("name")."</th><th></th>\n";
|
||||
echo "</tr>\n</thead>\n<tbody>\n";
|
||||
$dbversion = $dms->getDBVersion();
|
||||
echo "<tr><td>".getMLText('seeddms_version')."</td><td>".$version->version()."</td></tr>\n";
|
||||
|
|
@ -101,8 +101,7 @@ class SeedDMS_View_Info extends SeedDMS_Theme_Style {
|
|||
$this->contentHeading(getMLText("php_info"));
|
||||
echo "<table class=\"table table-condensed table-sm\">\n";
|
||||
echo "<thead>\n<tr>\n";
|
||||
echo "<th>".getMLText("name");
|
||||
echo "</th>\n";
|
||||
echo "<th>".getMLText("name")."</th><th></th>\n";
|
||||
echo "</tr>\n</thead>\n<tbody>\n";
|
||||
echo "<tr><td>PHP</td><td>".phpversion()."</td></tr>\n";
|
||||
echo "<tr><td>Path to php.ini</td><td>".php_ini_loaded_file()."</td></tr>\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user