aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1216.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-07-29 06:43:55 +0200
committerMario Vavti <mario@mariovavti.com>2018-07-29 06:43:55 +0200
commit3fcb6df0f1ee73216935a7c29d0a82d32bd61109 (patch)
treefeadfe9a7ae175e9b92214be68b388d4bf0a2ab4 /Zotlabs/Update/_1216.php
parent27329e39e49d4a3754196e38b8c1bfa812279b99 (diff)
parent97015162282989913d6b54c373af3b73b8043bad (diff)
downloadvolse-hubzilla-3fcb6df0f1ee73216935a7c29d0a82d32bd61109.tar.gz
volse-hubzilla-3fcb6df0f1ee73216935a7c29d0a82d32bd61109.tar.bz2
volse-hubzilla-3fcb6df0f1ee73216935a7c29d0a82d32bd61109.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Update/_1216.php')
-rw-r--r--Zotlabs/Update/_1216.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1216.php b/Zotlabs/Update/_1216.php
new file mode 100644
index 000000000..843567633
--- /dev/null
+++ b/Zotlabs/Update/_1216.php
@@ -0,0 +1,19 @@
+<?php
+
+namespace Zotlabs\Update;
+
+class _1215 {
+
+ function run() {
+
+ $r = q("UPDATE xchan set xchan_name = 'unknown' where xchan_name like '%<%' ");
+
+ if($r) {
+ return UPDATE_SUCCESS;
+ }
+ else {
+ return UPDATE_FAILED;
+ }
+ }
+
+}