aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/Router.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/Router.php')
-rw-r--r--application/Router.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/application/Router.php b/application/Router.php
index c9a51912..f6896b1c 100644
--- a/application/Router.php
+++ b/application/Router.php
@@ -45,6 +45,8 @@ class Router
45 45
46 public static $PAGE_SAVE_PLUGINSADMIN = 'save_pluginadmin'; 46 public static $PAGE_SAVE_PLUGINSADMIN = 'save_pluginadmin';
47 47
48 public static $GET_TOKEN = 'token';
49
48 /** 50 /**
49 * Reproducing renderPage() if hell, to avoid regression. 51 * Reproducing renderPage() if hell, to avoid regression.
50 * 52 *
@@ -142,6 +144,10 @@ class Router
142 return self::$PAGE_SAVE_PLUGINSADMIN; 144 return self::$PAGE_SAVE_PLUGINSADMIN;
143 } 145 }
144 146
147 if (startsWith($query, 'do='. self::$GET_TOKEN)) {
148 return self::$GET_TOKEN;
149 }
150
145 return self::$PAGE_LINKLIST; 151 return self::$PAGE_LINKLIST;
146 } 152 }
147} 153}