diff options
author | habeascodice <habeascodice@federated.social> | 2014-10-15 17:29:38 -0700 |
---|---|---|
committer | habeascodice <habeascodice@federated.social> | 2014-10-15 17:29:38 -0700 |
commit | 80eb84e843cdca51bbf4ebda180f4de41351b9c4 (patch) | |
tree | d6cd7012210477c6e17322b2d19b8a1aad61ca44 /install | |
parent | e4880d07d2aa447425d0b7dc3656e84de08006c0 (diff) | |
parent | 1eb478ba54206cca53653e7a579aa1a36fb03315 (diff) | |
download | volse-hubzilla-80eb84e843cdca51bbf4ebda180f4de41351b9c4.tar.gz volse-hubzilla-80eb84e843cdca51bbf4ebda180f4de41351b9c4.tar.bz2 volse-hubzilla-80eb84e843cdca51bbf4ebda180f4de41351b9c4.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'install')
-rw-r--r-- | install/update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 0b1fa5d2e..c36864908 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1129 ); +define( 'UPDATE_VERSION' , 1130 ); /** * @@ -1457,3 +1457,10 @@ function update_r1128() { } +function update_r1129() { + $r = q("update hubloc set hubloc_network = 'zot' where hubloc_network = ''"); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} + |