HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[BUG+FIX] - Can't use Authentication URL with get paramets
TomaszGrzemski
New
in Feedback
Many other systems need additional params in url (for example TYPO3).
We created a plugin for TYPO3 for Single Sign On using jsConnect.
We modified: class.jsconnect.plugin.php
This line:
$Result = $Url.'?'.http_build_query($Query);
We changed to:
if (strpos($Url, '?') === false ) {
$Result = $Url.'?'.http_build_query($Query);
} else {
$Result = $Url.'&'.http_build_query($Query);
}
Please insert this patch in next version.
2
Comments
Thanks for this.
On a side note, do you have a brother called Eric ?
I knew your name rang a bell. Armageddon - Gerbil
There was an error rendering this rich post.