osTicket / osTicket-plugins

Core plugins for osTicket (v1.8+)
GNU General Public License v2.0
149 stars 162 forks source link

ldap: PHP 8.1 Support #271

Closed JediKev closed 1 year ago

JediKev commented 1 year ago

This addresses PHP 8.1 compatibilty issues with the LDAP plugin. Since the LDAP resources were converted to LDAP\Connection, LDAP\Result, and LDAP\ResultEntry objects respectively, the previous is_resource() checks fail. This updates all relevant cases of is_resource() to !== false checks to make LDAP plugin compatible with PHP 8.1.

protich commented 1 year ago

Perhaps this is already addressed upstream? Did you see if there's an update we can do?

JediKev commented 1 year ago

Yes, no update we can do.