diff options
-rw-r--r-- | Zotlabs/Update/_1253.php | 23 | ||||
-rw-r--r-- | boot.php | 4 |
2 files changed, 25 insertions, 2 deletions
diff --git a/Zotlabs/Update/_1253.php b/Zotlabs/Update/_1253.php new file mode 100644 index 000000000..3b0e6899a --- /dev/null +++ b/Zotlabs/Update/_1253.php @@ -0,0 +1,23 @@ +<?php + +namespace Zotlabs\Update; + +class _1253 { + + function run() { + + dbq("START TRANSACTION"); + + $r = dbq("DELETE FROM app WHERE app_name IN ('Wiki', 'Cards', 'Articles') AND app_plugin = ''"); + + if($r) { + dbq("COMMIT"); + return UPDATE_SUCCESS; + } + + dbq("ROLLBACK"); + return UPDATE_FAILED; + + } + +} @@ -60,10 +60,10 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.3.2'); +define('STD_VERSION', '7.3.3'); define('ZOT_REVISION', '6.0'); -define('DB_UPDATE_VERSION', 1252); +define('DB_UPDATE_VERSION', 1253); define('PROJECT_BASE', __DIR__); |