cannod / moodle-drupalservices

Moodle plugin to connect to Drupal services
36 stars 25 forks source link

auth.php PHP 7 error code fix #82

Closed ZigmaZigmax closed 6 years ago

ZigmaZigmax commented 6 years ago

PHP 7 throws error for the code $user = new object(); it should be changed to $user = new stdClass(); as per the recommendation here http://php.net/manual/en/reserved.classes.php

netw3rker commented 6 years ago

This has been applied to all dev release branches/versions. Thanks! and keep the PR's coming!