Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2005-12-08 22:41:21 +0300
committerMichal Čihař <michal@cihar.com>2005-12-08 22:41:21 +0300
commit4144110d14fc99311992f1eaef56cfdc9656d1b2 (patch)
treee81c85bc4fcf27df1dd2e84d1155da38e7ad3aab /server_binlog.php
parent826c11215be52692ffa6db70bd611fd7b39a8d24 (diff)
Fix XHTML.
Diffstat (limited to 'server_binlog.php')
-rw-r--r--server_binlog.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/server_binlog.php b/server_binlog.php
index 8b856ad717..e525206519 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -20,7 +20,7 @@ require('./libraries/server_links.inc.php');
* Displays the sub-page heading
*/
echo '<h2>' . "\n"
- . ($cfg['MainPageIconic'] ? '<img src="' . $pmaThemeImage . 's_process.png" width="16" height="16" border="0" hspace="2" align="middle" />' : '' )
+ . ($cfg['MainPageIconic'] ? '<img src="' . $pmaThemeImage . 's_process.png" width="16" height="16" border="0" hspace="2" align="middle" alt="" />' : '' )
. ' ' . $strBinaryLog . "\n"
. '</h2>' . "\n";
@@ -30,16 +30,20 @@ if (!isset($log)) $log = '';
* Display log selector.
*/
if (count($binary_logs) > 1) {
- echo '<p><form action="server_binlog.php" method="get">';
+ echo '<form action="server_binlog.php" method="get">';
echo PMA_generate_common_hidden_inputs();
- echo $strSelectBinaryLog . ': ';
- echo '<select name="log">';
+ echo '<fieldset><legend>';
+ echo $strSelectBinaryLog;
+ echo '</legend><select name="log">';
foreach($binary_logs as $name) {
echo '<option value="' . $name . '"' . ($name == $log ? ' selected="selected"' : '') . '>' . $name . '</option>';
}
echo '</select>';
+ echo '</fieldset>';
+ echo '<fieldset class="tblFooters">';
echo '<input type="submit" value="' . $strGo . '" />';
- echo '</form><br /></p>';
+ echo '</fieldset>';
+ echo '</form>';
}