diff options
author | Mario <mario@mariovavti.com> | 2021-03-16 12:32:20 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-16 12:32:20 +0100 |
commit | c658bbca2416bc1d3e51ef6072fea57151d40981 (patch) | |
tree | b32c1f0c209fc03654082a2be025d3ce7ca39815 /Zotlabs/Lib | |
parent | 4e921cfdcfd6f021081a955855ecbafb1f30ec48 (diff) | |
download | volse-hubzilla-c658bbca2416bc1d3e51ef6072fea57151d40981.tar.gz volse-hubzilla-c658bbca2416bc1d3e51ef6072fea57151d40981.tar.bz2 volse-hubzilla-c658bbca2416bc1d3e51ef6072fea57151d40981.zip |
simplify get_pending_accounts query so that it will work in postgres. this will introduce a regression in rendering the table background color.
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index b64ab2cc5..992eba000 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -983,7 +983,7 @@ class Enotify { 'photo' => z_root() . '/' . get_default_profile_photo(48), 'when' => datetime_convert('UTC', date_default_timezone_get(),$rr['reg_created']), 'hclass' => ('notify-unseen'), - 'message' => (($rr['reg_vfd'] === '× not yet') ? t('not yet verified') : t('verified')) . ', ' . t('requires approval') + 'message' => (($rr['reg_vfd']) ? t('verified') : t('not yet verified')) . ', ' . t('requires approval') ]; return $x; |