Enabled the ability to use slashes in page urls to emulate directory hierarchies.
This commit is contained in:
parent
8b1a43f500
commit
6426950192
2 changed files with 8 additions and 6 deletions
|
|
@ -39,7 +39,8 @@ sub _getPageInfo {
|
|||
($pageId) = $_[0];
|
||||
if ($pageId eq "") {
|
||||
$pageName = lc($ENV{PATH_INFO});
|
||||
$pageName =~ s/\///g;
|
||||
#$pageName =~ s/\///g;
|
||||
$pageName =~ s/\///;
|
||||
$pageName =~ s/\'//;
|
||||
$pageName =~ s/\"//;
|
||||
if ($pageName ne "") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue