The branch, QA_3_4 has been updated via ab1a2394c3df043d81080792028ed739338674f5 (commit) from 15ef12542eaf64f63d25846c522477c695c7647f (commit)
- Log ----------------------------------------------------------------- commit ab1a2394c3df043d81080792028ed739338674f5 Author: Marc Delisle marc@infomarc.info Date: Fri Jun 3 13:00:56 2011 -0400
bug #3311170 [sync] Missing helper icons in Synchronize
-----------------------------------------------------------------------
Summary of changes: ChangeLog | 1 + server_synchronize.php | 18 +++++++----------- 2 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog index b80c555..1e3baa5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/server_synchronize.php b/server_synchronize.php index fa3a959..9ff9cd4 100644 --- a/server_synchronize.php +++ b/server_synchronize.php @@ -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>';
hooks/post-receive