]> git.mxchange.org Git - friendica.git/commitdiff
Added thread update for central item storage in the update procedure.
authorMichael Vogel <icarus@dabo.de>
Sun, 8 Feb 2015 15:03:23 +0000 (16:03 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 8 Feb 2015 15:03:23 +0000 (16:03 +0100)
boot.php
update.php

index dd6bc6ac5d6f6c58b9fcb7ca28a0c7898dcde193..8e337dda6ef053da29ad3c3f71bc2bf1bb7d87d2 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -18,7 +18,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Ginger');
 define ( 'FRIENDICA_VERSION',      '3.3.3-RC' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1178      );
+define ( 'DB_UPDATE_VERSION',      1179      );
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
 
index e80de3526a4b091917a839f39733b221e6556d22..57500b10d95acac99c3d1cb31659c5c40121b04d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1178 );
+define( 'UPDATE_VERSION' , 1179 );
 
 /**
  *
@@ -1630,3 +1630,10 @@ function update_1177() {
                        );
        }
 }
+
+function update_1178() {
+       // Update the central item storage with uid=0
+       proc_run('php',"include/threadupdate.php");
+
+       return UPDATE_SUCCESS;
+}