bug 984136 wrong alignment in RTL

This commit is contained in:
Marc Delisle
2004-07-07 13:58:05 +00:00
parent 3ec4f2d340
commit f96f458f18
2 changed files with 7 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-07-07 Marc Delisle <lem9@users.sourceforge.net>
* main.php: bug 984136, wrong alignment in RTL languages
2004-07-06 Marc Delisle <lem9@users.sourceforge.net> 2004-07-06 Marc Delisle <lem9@users.sourceforge.net>
* libraries/export/xls.php: enable user to specify './tmp' as the * libraries/export/xls.php: enable user to specify './tmp' as the
TempDir -- use realpath() to find the complete path. Add error trap TempDir -- use realpath() to find the complete path. Add error trap

View File

@@ -71,10 +71,13 @@ echo "\n";
/** /**
* Displays the welcome message and the server informations * Displays the welcome message and the server informations
*/ */
// note: for proper display of RTL languages, I removed the
// align="left" in the next <td> tag
?> ?>
<table border="0" cellpadding="0" cellspacing="0" width="100%"> <table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr> <tr>
<td align="left" valign="top"> <td valign="top">
<h1> <h1>
<?php <?php
echo sprintf($strWelcome, ' phpMyAdmin ' . PMA_VERSION . ''); echo sprintf($strWelcome, ' phpMyAdmin ' . PMA_VERSION . '');