Hello,
I've a problem since my client site is configured to work in several languages with path prefix.
So the singlesignon_create_request function, wich is executed form the client, add the language prefix (line 135 : $url = $base_url . url($path, array('query' => $query));)
Do you see a clean way to arrange this ? I'm gone try some durty hacks, but maybe is there a better way.

Comments

Anonymous’s picture

Just for information about the durty hack, I replaced this :
$url = $base_url . url($path, array('query' => $query));
by this
$url = $base_url."/".$path."?".$query;
in the singlesignon_create_request function in singlesignon.inc

meba’s picture

Can you think of any other scenario that needs this? I want to make sure to make as universal solution as possible...

Paul Natsuo Kishimoto’s picture

I have a patch in #615576: Support same-domain multisite setups that changes this line of code. Does it also solve this issue?