[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-21568-g8e638c7

Rouslan Placella roccivic at users.sourceforge.net
Tue Oct 25 00:08:29 CEST 2011


The branch, master has been updated
       via  8e638c7ea69a4c27a1f3132428363240e23a072e (commit)
      from  8589af99db440f92951502e6a83d3ff1b0c98bf7 (commit)


- Log -----------------------------------------------------------------
commit 8e638c7ea69a4c27a1f3132428363240e23a072e
Author: Rouslan Placella <rouslan at placella.com>
Date:   Mon Oct 24 23:07:55 2011 +0100

    Fixed IE regression: The link to ENUM/SET editor was not showing up

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

Summary of changes:
 js/functions.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/js/functions.js b/js/functions.js
index 5aa776a..8eb0d62 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1482,7 +1482,7 @@ function PMA_showNoticeForEnum(selectElement)
 {
     var enum_notice_id = selectElement.attr("id").split("_")[1];
     enum_notice_id += "_" + (parseInt(selectElement.attr("id").split("_")[2]) + 1);
-    var selectedType = selectElement.attr("value");
+    var selectedType = selectElement.val();
     if (selectedType == "ENUM" || selectedType == "SET") {
         $("p[id='enum_notice_" + enum_notice_id + "']").show();
     } else {


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list