Area 'modify' added to all extensions, some fixes for installing/modifying extension
authorRoland Häder <roland@mxchange.org>
Wed, 4 Mar 2009 20:16:41 +0000 (20:16 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 4 Mar 2009 20:16:41 +0000 (20:16 +0000)
57 files changed:
inc/extensions.php
inc/extensions/ext-
inc/extensions/ext-active.php
inc/extensions/ext-admins.php
inc/extensions/ext-admintheme1.php
inc/extensions/ext-admintheme_default.php
inc/extensions/ext-autopurge.php
inc/extensions/ext-bank.php
inc/extensions/ext-beg.php
inc/extensions/ext-birthday.php
inc/extensions/ext-bonus.php
inc/extensions/ext-booking.php
inc/extensions/ext-cache.php
inc/extensions/ext-country.php
inc/extensions/ext-debug.php
inc/extensions/ext-demo.php
inc/extensions/ext-doubler.php
inc/extensions/ext-events.php
inc/extensions/ext-holiday.php
inc/extensions/ext-html_mail.php
inc/extensions/ext-iso3166.php
inc/extensions/ext-logs.php
inc/extensions/ext-mailid.php
inc/extensions/ext-maintenance.php
inc/extensions/ext-mediadata.php
inc/extensions/ext-mods.php
inc/extensions/ext-mydata.php
inc/extensions/ext-network.php
inc/extensions/ext-newsletter.php
inc/extensions/ext-nickname.php
inc/extensions/ext-online.php
inc/extensions/ext-optimize.php
inc/extensions/ext-order.php
inc/extensions/ext-other.php
inc/extensions/ext-payout.php
inc/extensions/ext-primera.php
inc/extensions/ext-profile.php
inc/extensions/ext-rallye.php
inc/extensions/ext-refback.php
inc/extensions/ext-register.php
inc/extensions/ext-removeip.php
inc/extensions/ext-repair.php
inc/extensions/ext-rewrite.php
inc/extensions/ext-safe.php
inc/extensions/ext-sponsor.php
inc/extensions/ext-sql_patches.php
inc/extensions/ext-support.php
inc/extensions/ext-surfbar.php
inc/extensions/ext-task.php
inc/extensions/ext-theme.php
inc/extensions/ext-top10.php
inc/extensions/ext-transfer.php
inc/extensions/ext-usage.php
inc/extensions/ext-user.php
inc/extensions/ext-wernis.php
inc/extensions/ext-yoomedia.php
inc/mysql-manager.php

index 7e8fb37f894706ea79d632fece88590fa53ce31c..b2bca3ea6e981370752cac884f830f5af679966f 100644 (file)
@@ -52,14 +52,12 @@ function LOAD_EXTENSION ($ext_name, $EXT_LOAD_MODE = "", $EXT_VER = "", $dry_run
                return false;
        } // END - if
 
-       // Construct FQFN for extension file
-       $FQFN = sprintf("%sinc/extensions/ext-%s.php",
-               constant('PATH'),
-               $ext_name
-       );
+       // Construct include filename and FQFN for extension file
+       $INC = sprintf("inc/extensions/ext-%s.php", $ext_name);
+       $FQFN = constant('PATH') . $INC;
 
        // Is the extension file NOT there?
-       if (!FILE_READABLE($FQFN)) {
+       if (!INCLUDE_READABLE($INC)) {
                // Debug message
                DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Extension %s not found.", $ext_name));
 
@@ -103,7 +101,7 @@ function LOAD_EXTENSION ($ext_name, $EXT_LOAD_MODE = "", $EXT_VER = "", $dry_run
 
        // Include the extension file
        //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "Extension loaded.");
-       require_once($FQFN);
+       require($FQFN);
 
        // Is this extension deprecated?
        if (EXT_GET_DEPRECATED() == "Y") {
index 99656500aa3d4571789006c956e2cd1939b9a939..988a032b7922a9e361db4d8bdbf2895b76121078 100644 (file)
@@ -73,6 +73,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index e73ff6a9b44dd2f686ecdb011f03180c056be502..74783b617d663cdd2f82f70e0bace8e1affccf3c 100644 (file)
@@ -128,6 +128,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index e5887774275093d04fd4b7d40681a37acbae2e07..f4757e4047c82b33e3878288fc8e6ea4d0a48202 100644 (file)
@@ -303,6 +303,9 @@ PRIMARY KEY (id)
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index a35e08fb67ae81dbe1b01b765e5b81768c8d9730..e7f3f7ff222e27854390e18ba682dc13642a94a9 100644 (file)
@@ -78,6 +78,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index f82bdfb1c6b619ba281314dc053466ebce2ace0a..c0ab77a5e72f6456a22966601be51a9f178861a7 100644 (file)
@@ -78,6 +78,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 006c3c8351e033e1615e0741ae1763e71059bbbd..802e9a1d5c86155c77d4cb703ac14543bd139e66 100644 (file)
@@ -246,6 +246,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index b245c1595a91a16b21a8b3fc52d59d56ffff8af3..0bd94d1f8d437a779353902ab1c72c05e93e436b 100644 (file)
@@ -181,6 +181,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index d6c3c1935c3597f4a368fe0b3922a9aa7658bf7b..2b53a44fce96da4cd076ff1ccde7334b023a5c08 100644 (file)
@@ -255,6 +255,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index b6a45dbf3c3244765343c5362f89f235d25008f8..2f46110ffcd4674546d383453210ad7a00884975 100644 (file)
@@ -186,6 +186,9 @@ CHANGE `birth_year` `birth_year` SMALLINT(4) UNSIGNED ZEROFILL NOT NULL DEFAULT
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 5db31d82ecad27891f9953d43e46b4c47b030943..49404628a5da02fb22b02af702ddd75a1fdffb1e 100644 (file)
@@ -539,6 +539,9 @@ WHERE last_online < ".$mark." ORDER BY userid");
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index f32143f462acb8a7ca5bed4bc5590787e5abdb77..b1378a752f1c4099b6df53c8f95e303d3d6094b6 100644 (file)
@@ -86,6 +86,9 @@ case "deactivate": // Do stuff when admin deactivates this extension
        ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='booking' LIMIT 1");
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "update": // Update an extension
        switch ($EXT_VER)
        {
index a1ecd0f022b75e0e109746eaccec9318df9cccdc..16300c142e8a3454f61b244bae29dfc464c68846 100644 (file)
@@ -235,6 +235,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index c4a86d32de318d12938f8202352f387e8a7bbd06..060af0e63f8831f545ad76d2ad6a2f6a47b1397f 100644 (file)
@@ -107,6 +107,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 6ced58c3adb3ccdfd481c4dc089342db79f44fe7..ae191d87aabffa72a12f98cdb22040b07d02ff14 100644 (file)
@@ -162,6 +162,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 1a6594664e9bfbf0add3ace99360a3338cd68983..20af1378f0e07726e811411ce623958b52f0f845 100644 (file)
@@ -75,6 +75,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 3e1b249ca704c2a10dd5917f18452d32bee3a464..c53dce8fb151c3ffa6409705c0573dbc8eaa3d96 100644 (file)
@@ -231,6 +231,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 2e198e1751e9596ee2a903621df5e569f478c5b2..8852716da9b1ddc3748633e95550e374218bb520 100644 (file)
@@ -74,6 +74,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 7bb73f74022cdbcb835f6a94eb32aea0c0baed22..6f898ed99737479d048c8a24b17a6128df7b3631 100644 (file)
@@ -219,6 +219,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 5c379b6ba5c2b55d54cfe3216f335265fb065cb2..7f157c7ff21d6d5c2d47501bc60b1f0c8a197ae8 100644 (file)
@@ -127,6 +127,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 42c030330433fcba9987b430588624ba179d15da..04607497beca5134c32096366738f1fee4aaaabc 100644 (file)
@@ -327,6 +327,9 @@ VALUES ('AD', 'Andorra', 'ext-iso3166'),
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 2034458ad05be8b24ddd4aa2ea574f3839af01ce..66e070882d0e0601c339066538c6087d3abb190b 100644 (file)
@@ -76,6 +76,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 0c5ea26c78af8fd55cd0fc3ec19581462ca3871c..c2211d707d7aac5a8dce7f91fdbe503aa8bf54b1 100644 (file)
@@ -230,6 +230,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 35e9a7fe431459e41f43c74da1a91af97313363b..053e068f5eaa61f1c4471b5a35fe146f0c4e38c5 100644 (file)
@@ -101,6 +101,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index b8f6145a4972a902c412e4cc5805e91ab5bbaf32..2c383cb34329fa40ef13f5345053171af2ea6582 100644 (file)
@@ -132,6 +132,9 @@ Bitte stellen Sie diesen derzeit manuell unter <a href=\"{!URL!}/modules.php?mod
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index b619e7671d851f22d09a448317f36e08db130018..8b08a9b4b79200e29dfaac94441e9ec8c7458b23 100644 (file)
@@ -109,6 +109,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index eb5abb38e7796ac94b77654af43b3664cb972e65..c573a3bd8c15f8a4ddaca28429db8375f3e9a550 100644 (file)
@@ -160,6 +160,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 0f8d4f1774aa3546c7e2df245669d8cf40884024..fb5bda3e065fdef04f35572bf38802aa7b8a82b7 100644 (file)
@@ -73,6 +73,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 176d0c9d9bdbfab72edd98f9f55788d8abefd6ed..e53a041f1a4dd639a5c2a7bdc34f7bb46bf83499 100644 (file)
@@ -142,6 +142,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 64d4ffaff730867c736bb152b296ce6a0fe2ef99..0be12d77759fdc65b8ed762e34fb5798130f7ef2 100644 (file)
@@ -191,6 +191,9 @@ PRIMARY KEY(id)
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 3ef81f3122a16404f710af089debd126f2a9bca7..a9679229b922bf9623d2a80300b006c4b52df50a 100644 (file)
@@ -122,6 +122,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 2df802daa5bdf0faf7c5d8ec814f4feb8d6e4a39..2d084f1f11b9863ce52f0449ed55c2b47ca613f3 100644 (file)
@@ -106,6 +106,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index a3b21b78cc3aa900ccf2e0658e24ac7aa01374dd..e17010696af2ef17e3d126737f0c52a0da5fbbb8 100644 (file)
@@ -312,6 +312,9 @@ INDEX (`pool_id`)
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 24dc8d66fddc7338d91812564f5f07557625f0e4..00f45f6615e2fc5b4a69743421a06bdb1c873698 100644 (file)
@@ -194,6 +194,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 0f4b12eb349dd348ed23a223d395e55eab04c1fc..8f468d44ccfa3dbe9eadbbfb9c4a55dc5eed6e58 100644 (file)
@@ -235,6 +235,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index dc6f5dcae2507cd02ea78a10d2199ddcc6574997..169ea946a60ead318946cbe3fef089ca1f5ec211 100644 (file)
@@ -107,6 +107,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 55c69a7b2931db67e2b1d3e16cc90323ff548824..d1e302ae11c9c85feb937f80515ed67ab3abcd9e 100644 (file)
@@ -115,6 +115,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index b7acb33a7995d6028aee1de9d4c7045c31f30f1e..ab52b74ae9f27095fdcac262e05008c34bef10e4 100644 (file)
@@ -316,6 +316,9 @@ Zudem sollten Sie mindestens folgende Templates (in <strong>templates/".GET_LANG
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 693893facfaa19ede385144d434f9b4618043627..98ed38a6a0fcd53ef27268f4cd1b23e5d23fb957 100644 (file)
@@ -97,6 +97,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 67d153338cb3aac9a42439cc36630d048a090196..810fc367db76b81925a2bf722941ae01abeea880 100644 (file)
@@ -315,6 +315,9 @@ PRIMARY KEY(id)
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 90b7fc15f1114e16e306265bb0470ad54f519922..4c2131c6e9ff525ef6bcee825946316848fc3e02 100644 (file)
@@ -91,6 +91,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index ebf4f3bd1473d4b273a4d150af573641b7d9a79b..f86c9ccd2db0cca75bec55a14cc4793fe60ce9f5 100644 (file)
@@ -105,6 +105,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index ef2931d80b679769e200c7f4c14bffb86d80f5b1..817bf8ad7fb02a37dadb153d445bfeeab58cc024 100644 (file)
@@ -152,6 +152,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index e342b606ce46d8a1b07054a19b34884c58ed776e..4935aa90cdbbbcf80fa821c7a86b61c2fb7c5b11 100644 (file)
@@ -74,6 +74,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 1157f574d5b0d599eba397a6e4efdf5e60705c0a..742a39b406eaa5c37a34cc5ccb0d45461709e021 100644 (file)
@@ -411,6 +411,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index fa7969499b578338f71b297f96fde09bfbdd62d5..545b10f2583751a9a6737bfb6f316ac29febbfeb 100644 (file)
@@ -725,6 +725,9 @@ PRIMARY KEY (`filter_id`)
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 172bc301aacfb3476bbc6125076873590a7a474e..d983b32c7a15e2ee096b57f48940b8436ff9feef 100644 (file)
@@ -125,6 +125,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 81b2130a057549e9e6bc6ed27a50ac8724b78fc6..70ab262f24ac97dc62b565b2c00ded5f3e946e9a 100644 (file)
@@ -222,6 +222,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index a53f9667846124eb3b2b35ca12d569a2781ca78a..256635432128734dfd2f4c885721c29ac26a1510 100644 (file)
@@ -234,6 +234,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 4ad35051a3abd46eb84ed480219debbaaf206b10..d5cc37660b0a70af5bba838491abdb78c8b00510 100644 (file)
@@ -149,6 +149,9 @@ INDEX (`theme_active`)
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index ddfbcd3670dd4d8a8d18c861abd9e97c5d36dcc2..38c6a111001b94770da02111daa91d0309ea8328 100644 (file)
@@ -133,6 +133,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index e952879c1d2b4178b27201c480e196e242f6ef8d..57e004a5efa8329dc10949f8488c8bf8b14a7308 100644 (file)
@@ -273,6 +273,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index f38482a40a25daaf6969610250c83504a2cbd405..b4feac2a8dc535607636e35850c9c0c06e3209c4 100644 (file)
@@ -76,6 +76,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index 159c0462633b1068e25dc565cff33d657d9cafa4..7cc575b5661617de7ff7368069003145969bb20f 100644 (file)
@@ -252,6 +252,9 @@ PRIMARY KEY(`id`)
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index c197471bab311e81d54d9f20dad9b7386894d97b..db288ccae6e424a9f00f016bb480a371c128d615 100644 (file)
@@ -143,6 +143,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index d9720a0bad9db93d13b0884fd088d9ef8783b916..b872a0d26e001eea08fadc190654265ef71e6763 100644 (file)
@@ -105,6 +105,9 @@ case "update": // Update an extension
        }
        break;
 
+case "modify": // When the extension got modified
+       break;
+
 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
        break;
 
index e2bfccdb25d23b575ad9ae236a7feaa70c69a056..0f5051ae0ce704c8a693c3a072f81f766d8dc293 100644 (file)
@@ -2140,6 +2140,7 @@ function GET_SQLS () {
 
 // Add an SQL to the list
 function ADD_SQL ($sql) {
+       //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("sql=%s, count=%d", $sql, COUNT_SQLS()));
        $GLOBALS['sqls'][] = (string) $sql;
 }
 
@@ -2157,6 +2158,7 @@ function COUNT_SQLS () {
        if (IS_SQLS_INITIALIZED()) {
                // Then count it
                $count = count($GLOBALS['sqls']);
+               //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("count=%d", $count));
        } // END - if
 
        // Return it