[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-11153-gab1e5a3

Michal Čihař nijel at users.sourceforge.net
Thu Jul 21 13:37:39 CEST 2011


The branch, master has been updated
       via  ab1e5a3755dcf8c70f9be60a89ac10d825d84d92 (commit)
       via  d1c5d981e515fddf6ae9aeaa82a6738d81729dcb (commit)
      from  e55d178a42a6ee574018ae2de863362867da28ef (commit)


- Log -----------------------------------------------------------------
commit ab1e5a3755dcf8c70f9be60a89ac10d825d84d92
Author: Michal Čihař <mcihar at suse.cz>
Date:   Thu Jul 21 13:38:14 2011 +0200

    Fix function docblock

commit d1c5d981e515fddf6ae9aeaa82a6738d81729dcb
Author: Michal Čihař <mcihar at suse.cz>
Date:   Thu Jul 21 13:37:07 2011 +0200

    Add file level docblock

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

Summary of changes:
 libraries/server_synchronize.lib.php |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/libraries/server_synchronize.lib.php b/libraries/server_synchronize.lib.php
index c04ddb2..504b8fc 100644
--- a/libraries/server_synchronize.lib.php
+++ b/libraries/server_synchronize.lib.php
@@ -1,5 +1,10 @@
 <?php
 /* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Server synchronisation functions.
+ *
+ * @package phpMyAdmin
+ */
 
 /**
 * PMA_getMatchingTables places matching tables in source
@@ -8,11 +13,10 @@
 * source database but are absent from target database.
 * Criterion for matching tables is just comparing their names.
 *
-* @param    $trg_tables   array of target database table names,
-* @param    $src_tables   array of source database table names,
-*
-* @param    &$matching_tables           empty array passed by reference to save names of matching tables,
-* @param    &$uncommon_source_tables    empty array passed by reference to save names of tables present in
+* @param array $trg_tables              array of target database table names,
+* @param array $src_tables              array of source database table names,
+* @param array &$matching_tables        empty array passed by reference to save names of matching tables,
+* @param array &$uncommon_source_tables empty array passed by reference to save names of tables present in
 *                                       source database but absent from target database
 */
 function PMA_getMatchingTables($trg_tables, $src_tables, &$matching_tables, &$uncommon_source_tables)


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list