HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

[BUG+FIX] - Can't use Authentication URL with get paramets

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.

Comments

  • Options
    ToddTodd Chief Product Officer Vanilla Staff

    Thanks for this.

  • Options
    422422 Developer MVP

    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.

Sign In or Register to comment.