[pmwiki-users] Setting a group skin

Patrick R. Michaud pmichaud at pobox.com
Thu Dec 20 07:53:39 CST 2007


On Thu, Dec 20, 2007 at 07:35:01AM -0600, Steven J Brady wrote:
>    I'm a new users of Pmwiki and want to set a per group skin.  I've created
>    ./local/GroupName.php with the following content:
> 
>    <?php
>      SDV($Skin,'glossyhue');
> 
>    I know the file is being loaded when a page in the group is displayed but
>    the skin is not changing to the setting found in the GroupName.php script.
> 
>    Any help would be appreciated.

In this case, the SDV line ("set default value") is probably being
ignored because $Skin already has a value from the global config.

Try the following instead:

    $Skin = 'glossyhue';

Pm




More information about the pmwiki-users mailing list