I'm using in the function getLogoutUrl() in order to enable to the user to log out.
When the user is on url page with parameters there is a problem. If the user will press on logout link which directs to A.php page which is including header command. The header url is (example):
https://www.facebook.com/logout.php?next=http://bla.net?x=100&y=200&z=120
it will redirect to:
http://bla.net?x=100
and not to the full URL.
I've tried to use in urlencode on http://bla.net?x=100&y=200&z=120 but it didn't help. It's redirecting to Facebook home page.
I'd like to get any help. Thanks in advance.
nextparameter?$facebook->getLogoutUrl(array('next' => 'http://example.com/example.php?a=1&b=2&c=3'));?? – ifaour Jul 19 '11 at 8:14