Commit 43d2d49e by Scott

Merge pull request #132 from pupi1985/patch-42

Removed a warning in the installation process
parents 52b73209 01668df9
......@@ -534,7 +534,7 @@
Return array with all values from $array as keys
*/
{
return array_combine($array, array_fill(0, count($array), true));
return empty($array) ? array() : array_combine($array, array_fill(0, count($array), true));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment