diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-15 14:51:37 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-15 14:51:37 +0000 |
commit | 0347f018e56c009c31b29be7e727372ba9c50e2d (patch) | |
tree | e6901a5a44156ccf10ec2bcbb3288cca50f16b4c /pmwiki.php | |
parent | 874ff59848550639e40807e598734ac00038172b (diff) | |
download | pmwiki.svn-0347f018e56c009c31b29be7e727372ba9c50e2d.tar.bz2 |
Add PageVariable {$GroupHomePageUrl}.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4766 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'pmwiki.php')
-rw-r--r-- | pmwiki.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -167,6 +167,7 @@ $FmtPV = array( '$GroupHomePageName' => 'FmtGroupHome($pn,$group,$var)', '$GroupHomePageTitle' => 'FmtGroupHome($pn,$group,$var)', '$GroupHomePageTitlespaced' => 'FmtGroupHome($pn,$group,$var)', + '$GroupHomePageUrl' => 'FmtGroupHome($pn,$group,$var)', ); $SaveProperties = array('title', 'description', 'keywords'); $PageTextVarPatterns = array( @@ -1249,7 +1250,7 @@ function MatchNames($list, $pat, $caseinsensitive = true) { } return $list; } - + ## ResolvePageName "normalizes" a pagename based on the current ## settings of $DefaultPage and $PagePathFmt. It's normally used ## during initialization to fix up any missing or partial pagenames. |