diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-04-28 09:04:02 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-04-28 09:04:02 +0200 |
commit | c3267a27d36ad66ec2dd19a5613a3827010eebf2 (patch) | |
tree | d036dc31430152c526406ad94d611616e63c2df5 /Zotlabs | |
parent | 3543e6dd32bd7e518a0deec2038eafe6a183dc6b (diff) | |
download | volse-hubzilla-c3267a27d36ad66ec2dd19a5613a3827010eebf2.tar.gz volse-hubzilla-c3267a27d36ad66ec2dd19a5613a3827010eebf2.tar.bz2 volse-hubzilla-c3267a27d36ad66ec2dd19a5613a3827010eebf2.zip |
fix column name
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Libzotdir.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php index c3ff026d7..1b8d8436b 100644 --- a/Zotlabs/Lib/Libzotdir.php +++ b/Zotlabs/Lib/Libzotdir.php @@ -698,7 +698,7 @@ class Libzotdir { $flag_sql = ''; if ($flag !== null) { - $flag_sql = "ud_flag = '" . intval($flag) . "',"; + $flag_sql = "ud_flags = '" . intval($flag) . "',"; } |