#19688502 Fix : bug for missing support rewrite_mod

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8302 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-04-12 10:08:03 +00:00
parent ad4c2c54cd
commit 13b7824771

View file

@ -788,7 +788,9 @@ class Context {
// if using rewrite mod
if($self->allow_rewrite) {
$var_keys = array_keys($get_vars);
$target = implode('.', $var_keys);
sort($var_keys);
$target = implode('.', $var_keys);
$act = $get_vars['act'];
$vid = $get_vars['vid'];
@ -817,7 +819,7 @@ class Context {
'act.document_srl.key.vid'=>($act=='trackback')?"$vid/$srl/$key/$act":''
);
$query = $target_map[$target];
$query = $target_map[$target];
}
if(!$query) {
@ -1301,4 +1303,4 @@ class Context {
return $path;
}
}
?>
?>