00951: {$SiteAdminGroup} page variable not created
Description: Can the page variable {$SiteAdminGroup} be created similarly to the examples below?
* default = {$DefaultGroup} * site = {$SiteGroup} * siteadmin = {$SiteAdminGroup} * group = {$Group} |
|
See also PmWiki.Basic variables
Is it needed? If so, where would it likely be used?
--Pm
I envisaged that this would be used to replace the literal SiteAdmin\SomePage so that if the $SiteAdminGroup = $SiteGroup; change is made the links still work.
I think it might be useful to do it isidor
I would like to use links like [[{$SiteAdminGroup}/PageList]] in SpecialPages as it is could be done with [[{$SiteGroup}/PageList]] before some of the pages in Site/ moved to SiteAdmin/.
I use $FmtPV['$SiteAdminGroup'] = '$GLOBALS["SiteAdminGroup"]';
in my farmconfig.php, but I think, it belongs into the core.
'$SiteAdminGroup' => '$GLOBALS["SiteAdminGroup"]', # near line 134 in pmwiki.php
mfwolff June 29, 2016, at 05:53 AM
Thank you