Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Poirier2016-03-08 16:59:44 +0000
committerEric Poirier2016-03-08 16:59:55 +0000
commitbff21903b46fde486352ec8ff65fc8ffaa3592ce (patch)
treea38f036b3fc719cc157666b2cd7539218f14e9af
parent2765d906729b42f3417921a6a012bcea596a35c2 (diff)
downloadgo-bff21903b46fde486352ec8ff65fc8ffaa3592ce.tar.gz
go-bff21903b46fde486352ec8ff65fc8ffaa3592ce.tar.xz
go-bff21903b46fde486352ec8ff65fc8ffaa3592ce.zip
Infra 1944 - Making sure the campaignKey is always uppercasestaging
Signed-off-by: Eric Poirier <eric@eclipse.org>
-rw-r--r--redirector.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/redirector.php b/redirector.php
index d1631e5..0d08249 100644
--- a/redirector.php
+++ b/redirector.php
@@ -50,8 +50,9 @@
require_once "/home/data/httpd/eclipse-php-classes/system/dbconnection_rw.class.php";
$App = new App();
- # get the incoming parameters
- $_TAG = $App->getHTTPParameter("tag", "GET");
+ # get the incoming parameters
+ # and Making sure the $_TAG is always uppercase
+ $_TAG = strtoupper($App->getHTTPParameter("tag", "GET"));
if(strlen($_TAG) < 1) {
# error

Back to the top