$_REQUEST['mode'] backwards compatibility

This commit is contained in:
Jonathan Ernst
2006-07-07 15:39:41 +00:00
committed by WineHQ
parent 0d1a716c11
commit 3be08453e7

View File

@@ -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 */