bug #3311170 [sync] Missing helper icons in Synchronize

This commit is contained in:
Marc Delisle
2011-06-03 13:00:56 -04:00
parent 15ef12542e
commit ab1a2394c3
2 changed files with 8 additions and 11 deletions

View File

@@ -2,6 +2,7 @@
======================
3.4.3.0 (not yet released)
- bug #3311170 [sync] Missing helper icons in Synchronize
3.4.2.0 (not yet released)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label

View File

@@ -253,22 +253,18 @@ if ((isset($_REQUEST['submit_connect']))) {
*/
echo '<form name="synchronize_form" id="synchronize_form" method="post" action="server_synchronize.php">'
. PMA_generate_common_hidden_inputs('', '');
echo '<table id="serverstatustraffic" class="data" width = "60%">
echo '<table id="serverstatustraffic" class="data" width = "40%">
<tr>
<td> <h2>'
. ($GLOBALS['cfg']['MainPageIconic']
? '<img class="icon" src="' . $pmaThemeImage . 'new_struct.jpg" width="32"'
<td>'
. '<img class="icon" src="' . $pmaThemeImage . 'new_struct.jpg" width="32"'
. ' height="32" alt="" />'
: '')
. __('Structure Synchronization')
.'</h2>' .'</td>';
echo '<td> <h2>'
. ($GLOBALS['cfg']['MainPageIconic']
? '<img class="icon" src="' . $pmaThemeImage . 'new_data.jpg" width="32"'
.'</td>';
echo '<td>'
. '<img class="icon" src="' . $pmaThemeImage . 'new_data.jpg" width="32"'
. ' height="32" alt="" />'
: '')
. __('Data Synchronization')
. '</h2>' .'</td>';
. '</td>';
echo '</tr>
</table>';