diff -r e6b328970ee8 -r ffb0a6d08000 web/callback.php --- a/web/callback.php Wed Jul 27 12:24:43 2011 +0200 +++ b/web/callback.php Wed Jul 27 12:25:45 2011 +0200 @@ -4,7 +4,14 @@ * include some common code (like we did in the 90s) * People still do this? ;) */ -include_once './common.php'; +include_once 'common.php'; +if(!isset($_REQUEST['rep'])) { + $rep = $C_default_rep; +} +else { + $rep = $_REQUEST['rep']; +} + /** * Someone's knocking at the door using the Callback URL - if they have @@ -25,7 +32,7 @@ /** * With Access Token in hand, let's try accessing the client again */ - header('Location: ' . URL_ROOT ); + header('Location: ' . URL_ROOT . "$rep/client.php" ); } else { /** * Mistaken request? Some malfeasant trying something?