bug 984136
This commit is contained in:
@@ -15,10 +15,10 @@ $Source$
|
|||||||
bug #990724).
|
bug #990724).
|
||||||
* libraries/export/sql.php: Fix export of '0' strings (bug #990398).
|
* libraries/export/sql.php: Fix export of '0' strings (bug #990398).
|
||||||
|
|
||||||
|
|
||||||
2004-07-15 Marc Delisle <lem9@users.sourceforge.net>
|
2004-07-15 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_change.php: bug 990959, undefined index for DATETIME
|
* tbl_change.php: bug 990959, undefined index for DATETIME
|
||||||
field (problem in UTF-8 only!)
|
field (problem in UTF-8 only!)
|
||||||
|
* main.php: bug 984136: other fix for RTL and logo
|
||||||
|
|
||||||
2004-07-14 Marc Delisle <lem9@users.sourceforge.net>
|
2004-07-14 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* index.php, libraries/common.lib.php: bug 989581 and left panel
|
* index.php, libraries/common.lib.php: bug 989581 and left panel
|
||||||
|
10
main.php
10
main.php
@@ -134,8 +134,14 @@ if (($server > 0) && isset($mode) && ($mode == 'reload')) {
|
|||||||
</td>
|
</td>
|
||||||
<?php
|
<?php
|
||||||
if (@file_exists($pmaThemeImage . 'logo_right.png')) {
|
if (@file_exists($pmaThemeImage . 'logo_right.png')) {
|
||||||
echo ' <td align="right" valign="top">' . "\n";
|
// td and img seems not to obey the general dir= of the html tag
|
||||||
echo ' <img src="' . $pmaThemeImage . 'logo_right.png" alt="phpMyAdmin - Logo" border="0" hspace="5" vspace="5" align="right" />' . "\n";
|
if ($GLOBALS['text_dir'] == 'ltr') {
|
||||||
|
$tmp_align = 'right';
|
||||||
|
} else {
|
||||||
|
$tmp_align = 'left';
|
||||||
|
}
|
||||||
|
echo ' <td align="' . $tmp_align . '" valign="top">' . "\n";
|
||||||
|
echo ' <img src="' . $pmaThemeImage . 'logo_right.png" alt="phpMyAdmin - Logo" border="0" hspace="5" vspace="5" align="' . $tmp_align . '" />' . "\n";
|
||||||
echo ' </td>';
|
echo ' </td>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user