diff options
author | Mario <mario@mariovavti.com> | 2019-02-25 14:06:37 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-02-25 14:06:37 +0100 |
commit | 04b92167583bd001033963e934abad6f39a9fd93 (patch) | |
tree | 571f8ee7ff57e70502909ed8ecc59024a2b889ed /include/text.php | |
parent | 89bcb1de420b63883dce63e27aa81e6e636b6129 (diff) | |
parent | 1ff97754afee87f23b17a6b036ebe9e69d41a7c6 (diff) | |
download | volse-hubzilla-04b92167583bd001033963e934abad6f39a9fd93.tar.gz volse-hubzilla-04b92167583bd001033963e934abad6f39a9fd93.tar.bz2 volse-hubzilla-04b92167583bd001033963e934abad6f39a9fd93.zip |
Merge branch 'dev' into 'dev'
zot api changes to support combined content (items+files) import addon
See merge request hubzilla/core!1533
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 ad5f84b54..ec3eb7b10 100644 --- a/include/text.php +++ b/include/text.php @@ -3246,7 +3246,7 @@ function flatten_array_recursive($arr) { $ret = array_merge($ret, $tmp); } } - elseif($a) { + elseif(isset($a)) { $ret[] = $a; } } |