diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-07-29 08:05:41 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-07-29 08:05:41 +0200 |
commit | e4a1286aae411023210628d3be306420f7844d22 (patch) | |
tree | 6a0c5d082cb7ffa9eb622ccd9a2ff38c1bf1ee3f /Zotlabs | |
parent | 08a8011456c61ef52acf36bcdaa759a7027599a6 (diff) | |
download | volse-hubzilla-e4a1286aae411023210628d3be306420f7844d22.tar.gz volse-hubzilla-e4a1286aae411023210628d3be306420f7844d22.tar.bz2 volse-hubzilla-e4a1286aae411023210628d3be306420f7844d22.zip |
fix sql empty query error in db update 1216
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Update/_1216.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Update/_1216.php b/Zotlabs/Update/_1216.php index 8890795f1..69f2be15a 100644 --- a/Zotlabs/Update/_1216.php +++ b/Zotlabs/Update/_1216.php @@ -6,7 +6,7 @@ class _1216 { function run() { - $r = q("UPDATE xchan set xchan_name = 'unknown' where xchan_name like '%<%' "); + $r = dbq("UPDATE xchan set xchan_name = 'unknown' where xchan_name like '%<%' "); if($r) { return UPDATE_SUCCESS; |