Hi,

I get a persistent warning from PHP in the client module:

Notice: Undefined index: singlesignon_message in /shared_sign_on/sites/all/modules/contrib/sso/client/singlesignon_client.module on line 40

Fix is to alter line 40 of sso/client/singlesignon_client.module to this:

  if (isset($_GET['singlesignon_message'])) {

Still works, warning goes away. =)

(Apologies for lack of patch - sandbox is not in version control.)

Comments

meba’s picture

Status: Needs review » Closed (won't fix)

This bug is already fixed in CVS version, I will push a new release soon. Thanks!

greg.harvey’s picture

Ah, sorry. Wondered if it might be but couldn't find an issue. Good stuff! Module is great, btw - easier to use than the old Shared Sign On module was. This one's totally self-explanatory. =)

orb’s picture

  if (isset($_GET['singlesignon_message']) && !empty($_GET['singlesignon_message'])) {
yngens’s picture

great module. would be nice to get this fix into the official version.