]> git.mxchange.org Git - friendica.git/blobdiff - update.php
bbcode documentation: enable overline
[friendica.git] / update.php
index caa167617cd7abf9a2f9c3cf8808484c69880f54..5eab9c2207d48872c8a0505bfdec987efb490f83 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1191 );
+define('UPDATE_VERSION' , 1207);
 
 /**
  *
@@ -1595,7 +1595,7 @@ function update_1169() {
        if (!$r)
                return UPDATE_FAILED;
 
-       proc_run('php',"include/threadupdate.php");
+       proc_run(PRIORITY_LOW, "include/threadupdate.php");
 
        return UPDATE_SUCCESS;
 }
@@ -1636,7 +1636,7 @@ function update_1178() {
                set_config('system','community_page_style', CP_NO_COMMUNITY_PAGE);
 
        // Update the central item storage with uid=0
-       proc_run('php',"include/threadupdate.php");
+       proc_run(PRIORITY_LOW, "include/threadupdate.php");
 
        return UPDATE_SUCCESS;
 }
@@ -1644,7 +1644,7 @@ function update_1178() {
 function update_1180() {
 
        // Fill the new fields in the term table.
-       proc_run('php',"include/tagupdate.php");
+       proc_run(PRIORITY_LOW, "include/tagupdate.php");
 
        return UPDATE_SUCCESS;
 }
@@ -1677,7 +1677,7 @@ function update_1190() {
                        $idx = array_search($plugin, $plugins_arr);
                        if ($idx !== false){
                                unset($plugins_arr[$idx]);
-                               //delete forumlist manually from addon and hook table 
+                               //delete forumlist manually from addon and hook table
                                // since uninstall_plugin() don't work here
                                q("DELETE FROM `addon` WHERE `name` = 'forumlist' ");
                                q("DELETE FROM `hook` WHERE `file` = 'addon/forumlist/forumlist.php' ");
@@ -1723,3 +1723,8 @@ function update_1190() {
        return UPDATE_SUCCESS;
 
 }
+
+function update_1202() {
+       $r = q("UPDATE `user` SET `account-type` = %d WHERE `page-flags` IN (%d, %d)",
+               dbesc(ACCOUNT_TYPE_COMMUNITY), dbesc(PAGE_COMMUNITY), dbesc(PAGE_PRVGROUP));
+}