[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-11181-g85e680c

Michal Čihař nijel at users.sourceforge.net
Thu Jul 21 14:45:17 CEST 2011


The branch, master has been updated
       via  85e680c39689f60a913cfa15c5392f0aafd79fc8 (commit)
      from  0d2c07306507cf10b75ebb5ee369e82c77bfa00b (commit)


- Log -----------------------------------------------------------------
commit 85e680c39689f60a913cfa15c5392f0aafd79fc8
Author: Michal Čihař <mcihar at suse.cz>
Date:   Thu Jul 21 14:45:43 2011 +0200

    Remove function names used as first word in docblock

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

Summary of changes:
 libraries/server_synchronize.lib.php |   19 ++++++++-----------
 1 files changed, 8 insertions(+), 11 deletions(-)

diff --git a/libraries/server_synchronize.lib.php b/libraries/server_synchronize.lib.php
index 52232b8..3b929d3 100644
--- a/libraries/server_synchronize.lib.php
+++ b/libraries/server_synchronize.lib.php
@@ -7,11 +7,10 @@
  */
 
 /**
- * PMA_getMatchingTables places matching tables in source
- * and target databases in $matching_tables array whereas
- * $uncommon_source_tables array gets the tables present in
- * source database but are absent from target database.
- * Criterion for matching tables is just comparing their names.
+ * Places matching tables in source and target databases in $matching_tables
+ * array whereas $uncommon_source_tables array gets the tables present in
+ * source database but are absent from target database.  Criterion for
+ * matching tables is just comparing their names.
  *
  * @param array $trg_tables              array of target database table names,
  * @param array $src_tables              array of source database table names,
@@ -38,8 +37,7 @@ function PMA_getMatchingTables($trg_tables, $src_tables, &$matching_tables, &$un
 }
 
 /**
- * PMA_getNonMatchingTargetTables() places tables present
- * in target database but are absent from source database
+ * Places tables present in target database but are absent from source database
  *
  * @param array $trg_tables              array of target database table names,
  * @param array $matching_tables         matching tables array containing names
@@ -64,7 +62,7 @@ function PMA_getNonMatchingTargetTables($trg_tables, $matching_tables, &$uncommo
 }
 
 /**
- * PMA_dataDiffInTables() finds the difference in source and target matching tables by
+ * Finds the difference in source and target matching tables by
  * first comparing source table's primary key entries with target table enteries.
  * It gets the field names for the matching table also for comparisons.
  * If the entry is found in target table also then it is checked for the remaining
@@ -72,7 +70,6 @@ function PMA_getNonMatchingTargetTables($trg_tables, $matching_tables, &$uncommo
  * If update is required, it is placed in $update_array
  * Otherwise that entry is placed in the $insert_array.
  *
- *
  * @param string  $src_db                  name of source database
  * @param string  $trg_db                  name of target database
  * @param db_link $src_link                connection established with source server
@@ -294,7 +291,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching
 }
 
 /**
- * PMA_findDeleteRowsFromTargetTables finds the rows which are to be deleted from target table.
+ * Finds the rows which are to be deleted from target table.
  *
  * @param array   &$delete_array        array containing rows that are to be deleted
  * @param array   $matching_table       array containing matching table names
@@ -306,7 +303,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching
  * @param string  $src_db               name of source database
  * @param db_link $src_link             connection established with source server
  */
-function PMA_findDeleteRowsFromTargetTables(&$delete_array, $matching_table, $matching_table_index, $trg_keys, $src_keys, $trg_db, $trg_link,$src_db, $src_link)
+function PMA_findDeleteRowsFromTargetTables(&$delete_array, $matching_table, $matching_table_index, $trg_keys, $src_keys, $trg_db, $trg_link, $src_db, $src_link)
 {
     if (isset($trg_keys[$matching_table_index])) {
         $target_key_values = PMA_get_column_values($trg_db, $matching_table[$matching_table_index], $trg_keys[$matching_table_index], $trg_link);


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list