From 3be08453e7ae9c0301a5c76e3ebc6c6026483745 Mon Sep 17 00:00:00 2001 From: Jonathan Ernst Date: Fri, 7 Jul 2006 15:39:41 +0000 Subject: [PATCH] $_REQUEST['mode'] backwards compatibility --- include/incl.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/incl.php b/include/incl.php index 5c1d20e..932ba4d 100644 --- a/include/incl.php +++ b/include/incl.php @@ -73,6 +73,11 @@ if(isset($_REQUEST['topic'])) $_REQUEST['sTopic'] = $_REQUEST['topic']; unset($_REQUEST['topic']); } +if(isset($_REQUEST['mode'])) +{ + $_REQUEST['sMode'] = $_REQUEST['mode']; + unset($_REQUEST['mode']); +} /* End backwards compatibility code */