ShMaunder / JMapMyLDAP

LDAP Integration for Joomla! 2.5+
shmanic.com/tools/jmapmyldap
26 stars 19 forks source link

JArrayHelper in /libraries/shmanic/factory.php after J3.4 Update #31

Closed nmo-hosting closed 9 years ago

nmo-hosting commented 9 years ago

JArrayHelper::getValue is deprecated in J3.4. Example: In the factory.php in line 225:

if ($password = JArrayHelper::getValue($user, 'password', false))

quick fix:

if (is_array($user) && $password = JArrayHelper::getValue($user, 'password', false))

ShMaunder commented 9 years ago

Hi, please see #28

I'm trying to get the fixed package tested ASAP and released.