mirror of
https://github.com/friendica/friendica
synced 2024-11-11 20:22:53 +00:00
Introduced is_filled_array() + added some missing array initialization
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
95643c1ca2
commit
476d904c10
1 changed files with 4 additions and 0 deletions
4
boot.php
4
boot.php
|
@ -2202,3 +2202,7 @@ function argv($x) {
|
|||
|
||||
return '';
|
||||
}
|
||||
|
||||
function is_filled_array ($array) {
|
||||
return (is_array($array) && count($array) > 0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue