]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Introduced is_filled_array() + added some missing array initialization
[friendica.git] / boot.php
index d82669f231a9fb12608d3855ea50ea78e7bb6ee2..bf98cf5c3af9640500c601cfadf465fddfe3d3d7 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2138,3 +2138,7 @@ function argv($x) {
 
        return '';
 }
+
+function is_filled_array ($array) {
+       return (is_array($array) && count($array) > 0);
+}