aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-03 21:00:42 -0800
committerfriendica <info@friendica.com>2014-03-03 21:00:42 -0800
commit3d49bf0320cd6a35e34da9694d3eb957053845a3 (patch)
tree203e3d7f773231b15252806220110bb3ce9cf985 /install/update.php
parentcdd2e9cd953394adfd6331c946466f3165606e29 (diff)
downloadvolse-hubzilla-3d49bf0320cd6a35e34da9694d3eb957053845a3.tar.gz
volse-hubzilla-3d49bf0320cd6a35e34da9694d3eb957053845a3.tar.bz2
volse-hubzilla-3d49bf0320cd6a35e34da9694d3eb957053845a3.zip
directory sync issues
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php
index 9c9b6129a..175b89285 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1101 );
+define( 'UPDATE_VERSION' , 1102 );
/**
*
@@ -1143,4 +1143,11 @@ ADD INDEX ( `xchat_edited` ) ");
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
- \ No newline at end of file
+
+
+function update_r1101() {
+ $r = q("update updates set ud_flags = 2 where ud_flags = (-1)");
+ $r = q("update updates set ud_flags = 0 where ud_flags = 4096");
+ return UPDATE_SUCCESS;
+}
+