]> git.mxchange.org Git - friendica.git/blobdiff - update.php
updated master messages.po file
[friendica.git] / update.php
index e80de3526a4b091917a839f39733b221e6556d22..a2c86740284081df3cfe0aea89c6229f41f5652f 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1178 );
+define( 'UPDATE_VERSION' , 1187 );
 
 /**
  *
@@ -1630,3 +1630,21 @@ function update_1177() {
                        );
        }
 }
+
+function update_1178() {
+       if (get_config('system','no_community_page'))
+               set_config('system','community_page_style', CP_NO_COMMUNITY_PAGE);
+
+       // Update the central item storage with uid=0
+       proc_run('php',"include/threadupdate.php");
+
+       return UPDATE_SUCCESS;
+}
+
+function update_1180() {
+
+       // Fill the new fields in the term table.
+       proc_run('php',"include/tagupdate.php");
+
+       return UPDATE_SUCCESS;
+}