Quote Originally Posted by yellow1912 View Post
This has been mentioned before, and it is indeed easy to fix by simple "encode" the url output. I believe the fix has been posted in this thread, I know this thread is long so perhaps you could wait till next version where the fix is included. Note that this so called "error" will NOT affect your site in anyway, guaranteed!
Gotcha. I did a search within this thread and found my solution on Page 250...

Went to includes/classes/ssu/cores/links.php and replaced this line:

$link .= (strpos($link , '?') ? '&' : '?').$sid;

with this line:

$link = str_replace('&', '&', $link);

(appears right before return $link;)

Now everything appears to validate again.