mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 09:58:16 +01:00
"fix: suppresed php5.2's stupid emty haystack warning"
This commit is contained in:
parent
4f353bf0d7
commit
d1d4e02aad
@ -496,7 +496,7 @@
|
|||||||
{
|
{
|
||||||
$cols[$widget['name']] = $label;
|
$cols[$widget['name']] = $label;
|
||||||
}
|
}
|
||||||
elseif (strstr($cols[$col],$label) === false)
|
elseif (strpos($cols[$col],$label) === false)
|
||||||
{
|
{
|
||||||
$cols[$col] .= ($cols[$col] ? ', ' : '').$label;
|
$cols[$col] .= ($cols[$col] ? ', ' : '').$label;
|
||||||
$cols['name2col'][$col] = $col;
|
$cols['name2col'][$col] = $col;
|
||||||
|
Loading…
Reference in New Issue
Block a user