[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_7_1-34-g035c112

Rouslan Placella roccivic at users.sourceforge.net
Wed Nov 23 22:40:24 CET 2011


The branch, QA_3_4 has been updated
       via  035c112eafeb57201c63f0b94d7485d41762922f (commit)
      from  e2b6af5a99b9a053609ff76724fdc4a6a48dd14e (commit)


- Log -----------------------------------------------------------------
commit 035c112eafeb57201c63f0b94d7485d41762922f
Author: Rouslan Placella <rouslan at placella.com>
Date:   Wed Nov 23 21:39:10 2011 +0000

    Fixed bug #3441572 - 'newer version of phpMyAdmin' message not shown in IE8

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

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

diff --git a/ChangeLog b/ChangeLog
index c4817ff..031c880 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,7 @@ phpMyAdmin - ChangeLog
 - bug #3439292 [core] Fail to synchronize column with name of keyword
 - bug #3425156 [interface] Add column after drop
 - [interface] Avoid showing the password in phpinfo()'s output
+- bug #3441572 [GUI] 'newer version of phpMyAdmin' message not shown in IE8
 
 3.4.7.1 (2011-11-10)
 - [security] Fixed possible local file inclusion in XML import
diff --git a/js/functions.js b/js/functions.js
index 8431b2a..824c174 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -2273,15 +2273,7 @@ $(document).ready(function() {
      * Load version information asynchronously.
      */
     if ($('.jsversioncheck').length > 0) {
-        (function() {
-            var s = document.createElement('script');
-            s.type = 'text/javascript';
-            s.async = true;
-            s.src = 'http://www.phpmyadmin.net/home_page/version.js';
-            s.onload = PMA_current_version;
-            var x = document.getElementsByTagName('script')[0];
-            x.parentNode.insertBefore(s, x);
-        })();
+        $.getScript('http://www.phpmyadmin.net/home_page/version.js', PMA_current_version);
     }
 
     /**


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list