Fix for missing variables, thanks to monakoianar
authorRoland Häder <roland@mxchange.org>
Thu, 18 Dec 2008 05:53:43 +0000 (05:53 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 18 Dec 2008 05:53:43 +0000 (05:53 +0000)
inc/databases.php
inc/extensions.php

index a61c098d5cafd2b203794529078b0e5aeec01187..198ad3de990e54e88586a1a511dec546374957e4 100644 (file)
@@ -114,7 +114,7 @@ define('USAGE_BASE', "usage");
 define('SERVER_URL', "http://www.mxchange.org");
 
 // Current SVN revision
 define('SERVER_URL', "http://www.mxchange.org");
 
 // Current SVN revision
-define('CURR_SVN_REVISION', "647");
+define('CURR_SVN_REVISION', "648");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index 76047df9841e2f6aea06482518a3ba9a962c9b77..e4ca93ae400017f347f597a889c802eb02decfae 100644 (file)
@@ -471,7 +471,8 @@ function GET_EXT_VERSION ($ext_name) {
 //
 function EXTENSION_UPDATE ($file, $ext_name, $ext_ver, $dry_run=false) {
        // This shall never do a non-admin user!
 //
 function EXTENSION_UPDATE ($file, $ext_name, $ext_ver, $dry_run=false) {
        // This shall never do a non-admin user!
-       global $cacheInstance, $_CONFIG, $UPDATE_NOTES, $NOTES;
+       global $cacheInstance, $_CONFIG, $UPDATE_NOTES, $NOTES, $EXT_VER_HISTORY;
+       global $EXT_UPDATE_DEPENDS;
 
        // Init arrays
        $SQLs = array(); $INC_POOL = array();
 
        // Init arrays
        $SQLs = array(); $INC_POOL = array();