theme none should be original

This commit is contained in:
Marc Delisle
2004-06-15 17:03:34 +00:00
parent 5fb6e7976d
commit 84c19c0f42
3 changed files with 6 additions and 4 deletions

View File

@@ -10,6 +10,8 @@ $Source$
* export.php, sql.php, db_details_importdocsql.php, ldi_check.php,
tbl_replace.php, libraries/common.lib.php,
libraries/transformations.lib.php: new function PMA_securePATH()
* main.php, tbl_properties_structure.php: theme "none" should be "original",
thanks to Michael Keck (mkkeck)
2004-06-15 Michal Čihař <michal@cihar.com>
* lang/czech: Updated.

View File

@@ -466,7 +466,7 @@ echo "\n";
<td valign="top">
<table border="0" cellpadding="3" cellspacing="0">
<tr>
<th<?php if($theme!='none'){ ?> class="tblHeaders"<?php } echo $str_iconic_colspan; ?>>&nbsp;&nbsp;phpMyAdmin</th>
<th<?php if($theme!='original'){ ?> class="tblHeaders"<?php } echo $str_iconic_colspan; ?>>&nbsp;&nbsp;phpMyAdmin</th>
</tr>
<?php
// Displays language selection combo

View File

@@ -744,7 +744,7 @@ if ($cfg['ShowStats']) {
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatCreateTime; ?></td>
<td<?php if($theme=='none' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<td<?php if($theme=='original' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
</td>
</tr>
@@ -758,7 +758,7 @@ if ($cfg['ShowStats']) {
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatUpdateTime; ?></td>
<td<?php if($theme=='none' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<td<?php if($theme=='original' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
</td>
</tr>
@@ -772,7 +772,7 @@ if ($cfg['ShowStats']) {
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatCheckTime; ?></td>
<td<?php if($theme=='none' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<td<?php if($theme=='original' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
</td>
</tr>