]> git.mxchange.org Git - friendica.git/blobdiff - update.php
Updated version number
[friendica.git] / update.php
index 273e75de7d53bccc84e49a548245120b731ca3f1..bc14b3a29fbbca7b2a317d8d5a9a8fa3baced7ea 100644 (file)
@@ -7,6 +7,8 @@ use Friendica\Core\Worker;
 use Friendica\Database\DBM;
 use Friendica\Model\User;
 
+require_once 'include/dba.php';
+
 /**
  *
  * update.php - automatic system update
@@ -173,3 +175,12 @@ function update_1245() {
 
        return UPDATE_SUCCESS;
 }
+
+function update_1247() {
+       // Removing hooks with the old name
+       dba::e("DELETE FROM `hook`
+WHERE `hook` LIKE 'plugin_%'");
+
+       // Make sure we install the new renamed ones
+       Addon::reload();
+}