• EricAlderman
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Since the upgrade last night, the getSSP_URL function defined in the SelfServiceUtility distributed by Salesforce appears to return different data. Here is a sample of what is being returned by getSSP_URL:
 
 
As you can see, the hostname is repeated. Looking into SelfServiceUserUtility.php, it appears that the cssID (populated by $matches[2] in the php code) now includes the hostname, whereas before the upgrade it did not. I excluded the following from the destURL definition:
 
$scheme . '://' . $hostname .
 
which is working, but I am concerned that it will change back.
 
Anybody else seeing this?
 
Eric
 
Since the upgrade last night, the getSSP_URL function defined in the SelfServiceUtility distributed by Salesforce appears to return different data. Here is a sample of what is being returned by getSSP_URL:
 
 
As you can see, the hostname is repeated. Looking into SelfServiceUserUtility.php, it appears that the cssID (populated by $matches[2] in the php code) now includes the hostname, whereas before the upgrade it did not. I excluded the following from the destURL definition:
 
$scheme . '://' . $hostname .
 
which is working, but I am concerned that it will change back.
 
Anybody else seeing this?
 
Eric