If you clicked cas logout it would log you out of drupal, but not cas. This was caused by an additional slash in the logout url. Because it is required that the uri have a / at the beginning the addtional slash is not necessary.

Patch attatched.

CommentFileSizeAuthor
#1 logout.patch730 bytesredndahead

Comments

redndahead’s picture

StatusFileSize
new730 bytes

hmm can you not attach files when you create an issue? Hopefully patch will show up here.

metzlerd’s picture

Taking a different approach so it doesn't matter how uri was specified ,but will commit this instead.

  $logout_destination .= '/'. trim($uri,'/') .'/logout';
metzlerd’s picture

Status: Needs review » Fixed

Committed to Head and DRUPAL-5 Branch

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

  • Commit 57cf50d on 6.x-2.x, 6.x-3.x, 7.x-1.x, master, 8.x-1.x by metzlerd:
    Fix for #271266   problem with cas logout url.