diff options
author | Mario Vavti <mario@mariovavti.com> | 2021-02-03 10:22:34 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2021-02-03 10:22:34 +0100 |
commit | 34b28cd8d36c7805e65c442ff1588ccf5165387a (patch) | |
tree | 9fa4e9f886f95649032053963e0b97e709bc2d31 /Zotlabs/Lib | |
parent | 9a170791e456df9431aa989b0c7b89eb4c830735 (diff) | |
download | volse-hubzilla-34b28cd8d36c7805e65c442ff1588ccf5165387a.tar.gz volse-hubzilla-34b28cd8d36c7805e65c442ff1588ccf5165387a.tar.bz2 volse-hubzilla-34b28cd8d36c7805e65c442ff1588ccf5165387a.zip |
fix wrong operand
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 3a24cd349..d2a0f0abc 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -43,7 +43,7 @@ class Enotify { dbesc($params['to_xchan']) ); } - if ($x & $y) { + if ($x && $y) { $sender = $x[0]; $recip = $y[0]; } else { |