aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-03-04 14:52:12 +0100
committermarijus <mario@mariovavti.com>2014-03-04 14:52:12 +0100
commitffb791968e48b5699dc99fffccc562f198f86c5d (patch)
tree4b53eeae5f9236f76f6ba4baee00b0a08adafe50 /install/update.php
parent636a52d001be9bce66f5b2fd7313ffa6540a97e4 (diff)
parent5b33d98f0814a2fcb23ad78d2442ebecc85d4fb5 (diff)
downloadvolse-hubzilla-ffb791968e48b5699dc99fffccc562f198f86c5d.tar.gz
volse-hubzilla-ffb791968e48b5699dc99fffccc562f198f86c5d.tar.bz2
volse-hubzilla-ffb791968e48b5699dc99fffccc562f198f86c5d.zip
Merge branch 'master' of https://github.com/friendica/red
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;
+}
+