aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1102.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Update/_1102.php')
-rw-r--r--Zotlabs/Update/_1102.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1102.php b/Zotlabs/Update/_1102.php
new file mode 100644
index 000000000..d25979b1f
--- /dev/null
+++ b/Zotlabs/Update/_1102.php
@@ -0,0 +1,16 @@
+<?php
+
+namespace Zotlabs\Update;
+
+class _1102 {
+function run() {
+ $r = q("update abook set abook_flags = (abook_flags - %d)
+ where ( abook_flags & %d)",
+ intval(ABOOK_FLAG_UNCONNECTED),
+ intval(ABOOK_FLAG_UNCONNECTED)
+ );
+ return UPDATE_SUCCESS;
+}
+
+
+} \ No newline at end of file