예제 #1
0
function openid_Logout($target)
{
    OpenIDConsumer::logout();
    return $target;
}
예제 #2
0
function LogoutOpenID()
{
    OpenIDConsumer::logout();
    header("HTTP/1.0 302 Moved Temporarily");
    header("Location: " . $_GET['requestURI']);
    // Hack for avoiding textcube zero-length content
    print "<html><body></body></html>";
}