Fixed issues with the search form and context and page args... not finished

SVN:trunk[911]
This commit is contained in:
Romain Quetiez
2010-10-21 14:28:40 +00:00
parent 22cf8e4986
commit ddd52554f1
2 changed files with 21 additions and 3 deletions

View File

@@ -1616,7 +1616,14 @@ EOF
*/
public static function MapContextParam($sContextParam)
{
return $sContextParam;
if ($sContextParam == 'menu')
{
return null;
}
else
{
return $sContextParam;
}
}
}
?>