[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-21569-g79cf006

Michal Čihař nijel at users.sourceforge.net
Tue Oct 25 10:02:17 CEST 2011


The branch, master has been updated
       via  79cf0067a9020e79d0b1ffb038f3786159520e97 (commit)
      from  8e638c7ea69a4c27a1f3132428363240e23a072e (commit)


- Log -----------------------------------------------------------------
commit 79cf0067a9020e79d0b1ffb038f3786159520e97
Author: Michal Čihař <mcihar at suse.cz>
Date:   Tue Oct 25 10:02:00 2011 +0200

    Fix coding style

-----------------------------------------------------------------------

Summary of changes:
 test/theme.php |   50 ++++++++++++++++++++++++++++----------------------
 1 files changed, 28 insertions(+), 22 deletions(-)

diff --git a/test/theme.php b/test/theme.php
index 1750b33..0edbc03 100644
--- a/test/theme.php
+++ b/test/theme.php
@@ -47,32 +47,38 @@ $item = '<a href="%1$s?%2$s" class="item">'
     .'%4$s: %3$s</a>' . "\n";
 
 echo '<div id="serverinfo">' . "\n";
-printf($item,
-        $GLOBALS['cfg']['DefaultTabServer'],
-        PMA_generate_common_url(),
-        'Server',
-        __('Server'),
-        'ic_s_host');
+printf(
+    $item,
+    $GLOBALS['cfg']['DefaultTabServer'],
+    PMA_generate_common_url(),
+    'Server',
+    __('Server'),
+    'ic_s_host'
+    );
 
 echo $separator;
-printf($item,
-        $GLOBALS['cfg']['DefaultTabDatabase'],
-        '',
-        'Database',
-        __('Database'),
-        'ic_s_db');
+printf(
+    $item,
+    $GLOBALS['cfg']['DefaultTabDatabase'],
+    '',
+    'Database',
+    __('Database'),
+    'ic_s_db'
+    );
 
 echo $separator;
-printf($item,
-        $GLOBALS['cfg']['DefaultTabTable'],
-        '',
-        'Table',
-        (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view']
-            ? __('View')
-            : __('Table')),
-        (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view']
-            ? 'ic_b_views'
-            : 'ic_s_tbl'));
+printf(
+    $item,
+    $GLOBALS['cfg']['DefaultTabTable'],
+    '',
+    'Table',
+    (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view']
+        ? __('View')
+        : __('Table')),
+    (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view']
+        ? 'ic_b_views'
+        : 'ic_s_tbl')
+    );
 
 echo '<span class="table_comment" id="span_table_comment">'
     .'"Table comment&quot</span>' . "\n";


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list