diff options
author | zotlabs <mike@macgirvin.com> | 2019-02-24 21:43:15 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-02-24 21:43:15 -0800 |
commit | 1ff97754afee87f23b17a6b036ebe9e69d41a7c6 (patch) | |
tree | be179ff0fbc801ee2f2ec733b72c39e2d42fb3cb /include/text.php | |
parent | 20e43311db8f320ac6eeb094c27210885637240d (diff) | |
download | volse-hubzilla-1ff97754afee87f23b17a6b036ebe9e69d41a7c6.tar.gz volse-hubzilla-1ff97754afee87f23b17a6b036ebe9e69d41a7c6.tar.bz2 volse-hubzilla-1ff97754afee87f23b17a6b036ebe9e69d41a7c6.zip |
issues uncovered testing combined item/file import
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index b017b038a..6dac5ccc7 100644 --- a/include/text.php +++ b/include/text.php @@ -3241,7 +3241,7 @@ function flatten_array_recursive($arr) { $ret = array_merge($ret, $tmp); } } - elseif($a) { + elseif(isset($a)) { $ret[] = $a; } } |