1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 14:46:56 +02:00

mod_rewrite related problems and backward incompatibilities

This commit is contained in:
secretr
2011-03-15 15:04:03 +00:00
parent ce8c337b12
commit 6ecf44adb8
2 changed files with 7 additions and 7 deletions

View File

@@ -909,7 +909,7 @@ if(!defined("THEME_LAYOUT"))
if(is_array($cusPagePref) && count($cusPagePref)>0) // check if we match a page in layout custompages.
{
//e_SELF.(e_QUERY ? '?'.e_QUERY : '');
$c_url = e_REQUEST_URL;// mod_rewrite support
$c_url = e_REQUEST_URL.(e_QUERY ? '?'.e_QUERY : '');// mod_rewrite support
foreach($cusPagePref as $lyout=>$cusPageArray)
{
if(!is_array($cusPageArray)) { continue; }