From fd834b4b349e02bdedb8ed8c7a1392dccb0d4da8 Mon Sep 17 00:00:00 2001 From: x2000habouzit Date: Mon, 24 Jul 2006 09:58:57 +0000 Subject: [PATCH] fix auth problem git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@622 839d8a87-29fc-0310-9880-83ba4fa771e5 --- include/xnet/session.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/xnet/session.inc.php b/include/xnet/session.inc.php index d146084..147fab8 100644 --- a/include/xnet/session.inc.php +++ b/include/xnet/session.inc.php @@ -100,16 +100,16 @@ class XnetSession S::kill('loginX'); Get::kill('auth'); Get::kill('uid'); - $args = array(); $path = Get::v('p'); Get::kill('p'); Get::kill('PHPSESSID'); + $args = array(); foreach($_GET as $key => $val) { $args[] = urlencode($key).'='.urlencode($val); } - pl_redirect($path, join('&', $args)); + http_redirect($globals->baseurl . '/' . $path, join('&', $args)); } // }}} -- 2.1.4