From d36d283b7b144b6561151a3fcb8885feb88949ad Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Tue, 29 May 2012 11:17:50 +0200 Subject: [PATCH] Use uVariables instead of sVariables for unfiltered router variables --- components/component.router.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/component.router.php b/components/component.router.php index 818533d..ee4bb04 100644 --- a/components/component.router.php +++ b/components/component.router.php @@ -17,7 +17,7 @@ class CPHPRouter extends CPHPBaseClass { public $routes = array(); public $parameters = array(); - public $sVariables = array(); + public $uVariables = array(); public $custom_query = ""; public $allow_slash = false; public $ignore_query = false; @@ -101,7 +101,7 @@ class CPHPRouter extends CPHPBaseClass if(strlen($key) > 1 && substr($key, 0, 1) == "_") { $key = substr($key, 1); - $this->sVariables[$key] = $value; + $this->uVariables[$key] = $value; } }