PS:
> $SkinCopyright = "................";
> $FmtPV['$SkinCopyright'] = '$GLOBALS["SkinCopyright"]';
Variable $SkinCopyright is declard in config.php and so automatically
becomes a Global var, part of the $GLOBALS array.
But note that the leading $ sign is not used to refer to the
array item in $GLOBALS.
On the other hand a $ sign is added for the $FmtPV array item:
$FmtPV['$SkinCopyright']
so we can use in a page markup {$SkinCopyright}, which PmWiki
recognises as a page variable and renders correctly.
~Hans
_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users