[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-11272-gce3f308

Marc Delisle lem9 at users.sourceforge.net
Thu Jul 21 15:42:00 CEST 2011


The branch, master has been updated
       via  ce3f3087414ebb87acf75346c17a69962e699e62 (commit)
      from  bb3cb6d99cbba59caef8e91e621c282b192704c9 (commit)


- Log -----------------------------------------------------------------
commit ce3f3087414ebb87acf75346c17a69962e699e62
Author: Marc Delisle <marc at infomarc.info>
Date:   Thu Jul 21 09:41:49 2011 -0400

    Typo in variable name

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

Summary of changes:
 js/db_structure.js |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/js/db_structure.js b/js/db_structure.js
index 1f2d0e6..e7eb7ca 100644
--- a/js/db_structure.js
+++ b/js/db_structure.js
@@ -57,10 +57,10 @@ $(document).ready(function() {
      * @uses    PMA_ajaxShowMessage()
      * @see     $cfg['AjaxEnable']
      */
-    var currrent_insert_table;
+    var current_insert_table;
     $("td.insert_table a.ajax").live('click', function(event){
         event.preventDefault();
-        currrent_insert_table = $(this);
+        current_insert_table = $(this);
         var $url = $(this).attr("href");
         if ($url.substring(0, 15) == "tbl_change.php?") {
             $url = $url.substring(15);
@@ -144,7 +144,7 @@ $(document).ready(function() {
                 $("#insert_table_dialog").dialog("close").remove();
             }
             /**Update the row count at the tableForm*/
-            currrent_insert_table.closest('tr').find('.value.tbl_rows').html(data.row_count);
+            current_insert_table.closest('tr').find('.value.tbl_rows').html(data.row_count);
         }) // end $.post()
     }) // end insert table button "Go"
 
@@ -170,7 +170,7 @@ $(document).ready(function() {
                 }
                 if (selected_after_insert == "new_insert") {
                     /**Trigger the insert dialog for new_insert option*/
-                    currrent_insert_table.trigger('click');
+                    current_insert_table.trigger('click');
                 }
 
             } else {
@@ -180,7 +180,7 @@ $(document).ready(function() {
                 $("#insert_table_dialog").dialog("close").remove();
             }
             /**Update the row count at the tableForm*/
-            currrent_insert_table.closest('tr').find('.value.tbl_rows').html(data.row_count);
+            current_insert_table.closest('tr').find('.value.tbl_rows').html(data.row_count);
         }) // end $.post()
     });
 


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list