diff options
author | friendica <info@friendica.com> | 2014-10-14 18:02:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-14 18:02:34 -0700 |
commit | 2db7d88e285f2deb6d75d961bccfa396cd4eaae6 (patch) | |
tree | a32df171e9ab09c63e7a582db9f589c73fa3527d /install/update.php | |
parent | 903f7e73fbc9a36c0a073ff1c9f05555a030a34e (diff) | |
download | volse-hubzilla-2db7d88e285f2deb6d75d961bccfa396cd4eaae6.tar.gz volse-hubzilla-2db7d88e285f2deb6d75d961bccfa396cd4eaae6.tar.bz2 volse-hubzilla-2db7d88e285f2deb6d75d961bccfa396cd4eaae6.zip |
this is the reason Diaspora forum tagging was broken
Diffstat (limited to 'install/update.php')
-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..18729f581 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; +} + |