diff options
Diffstat (limited to 'community/homer-api/php7.patch')
-rw-r--r-- | community/homer-api/php7.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/community/homer-api/php7.patch b/community/homer-api/php7.patch new file mode 100644 index 0000000000..df159b0ba4 --- /dev/null +++ b/community/homer-api/php7.patch @@ -0,0 +1,11 @@ +--- homer-api-5.0.6/api/Authentication/LDAP.php ++++ homer-api-5.0.6.php7/api/Authentication/LDAP.php +@@ -118,7 +118,7 @@ + + + // Assigne Admin Privs, should be read from the LDAP Directory in the future +- $ADMIN_USER = split(",", LDAP_ADMIN_USER); ++ $ADMIN_USER = explode(",", LDAP_ADMIN_USER); + foreach($ADMIN_USER as &$value) { + + if ($value == $param['username']) { |