Added thread update for central item storage in the update procedure.
This commit is contained in:
parent
a97d4383a1
commit
10c7ab76a2
2 changed files with 9 additions and 2 deletions
2
boot.php
2
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' );
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue