aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-06-21 10:08:49 +0200
committerMario Vavti <mario@mariovavti.com>2016-06-21 10:08:49 +0200
commitecae0b3d97d759603bb2bf9bc51187a2842964c8 (patch)
treef91d7d8efdd3c0ba1b7eeb59ac4555d0bff8aafe /include/text.php
parentda2c0a22f9763621e44a6614627034c9789d7639 (diff)
parent63423c8ee1f750d855c75ed67205076d21eda4f1 (diff)
downloadvolse-hubzilla-ecae0b3d97d759603bb2bf9bc51187a2842964c8.tar.gz
volse-hubzilla-ecae0b3d97d759603bb2bf9bc51187a2842964c8.tar.bz2
volse-hubzilla-ecae0b3d97d759603bb2bf9bc51187a2842964c8.zip
Merge branch 'dev' into sabre32
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 22f4556a8..4f28c6dbc 100644
--- a/include/text.php
+++ b/include/text.php
@@ -2050,7 +2050,7 @@ function ids_to_array($arr,$idx = 'id') {
$t = array();
if($arr) {
foreach($arr as $x) {
- if(! in_array($x[$idx],$t)) {
+ if(array_key_exists($idx,$x) && strlen($x[$idx]) && (! in_array($x[$idx],$t))) {
$t[] = $x[$idx];
}
}