diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-06-14 19:56:04 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-06-14 19:56:04 -0400 |
commit | eeaafe9f3918661022b465fe0522a3f0e44065b0 (patch) | |
tree | b0e2e941b670419950630a4cfc2b0078da69b502 /install | |
parent | 6430a232f88ed214997d7704c18aead873094a0f (diff) | |
parent | 0ef2622621867fa197988974b47eff85f20a80e7 (diff) | |
download | volse-hubzilla-eeaafe9f3918661022b465fe0522a3f0e44065b0.tar.gz volse-hubzilla-eeaafe9f3918661022b465fe0522a3f0e44065b0.tar.bz2 volse-hubzilla-eeaafe9f3918661022b465fe0522a3f0e44065b0.zip |
Merge remote-tracking branch 'upstream/dev' into wiki
Diffstat (limited to 'install')
-rw-r--r-- | install/update.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 908f60498..e47ebf07f 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1176 ); +define( 'UPDATE_VERSION' , 1177 ); /** * @@ -2254,3 +2254,16 @@ function update_r1175() { return UPDATE_FAILED; } + + +function update_r1176() { + + $r = q("select * from item_id where true"); + if($r) { + foreach($r as $rr) { + \Zotlabs\Lib\IConfig::Set($rr['iid'],'system',$rr['service'],$rr['sid'],true); + } + } + return UPDATE_SUCCESS; + +}
\ No newline at end of file |