web/clear.php
changeset 233 10d6fd6ce9ab
parent 229 74c9ddc3640b
child 1557 7c67caaafdeb
--- a/web/clear.php	Mon Jul 25 18:56:21 2011 +0200
+++ b/web/clear.php	Tue Jul 26 16:49:36 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'];
+}
+
 
 /**
  * Clear the Access Token to force the OAuth protocol to rerun
@@ -14,4 +21,4 @@
 /**
  * Redirect back to index and the protocol legs should run once again
  */
-header('Location: ' . URL_ROOT . 'client.php');
+header('Location: ' . URL_ROOT . "$rep/client.php");