1
0
Fork 0

Added thread update for central item storage in the update procedure.

This commit is contained in:
Michael Vogel 2015-02-08 16:03:23 +01:00
commit 10c7ab76a2
2 changed files with 9 additions and 2 deletions

View 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;
}