Sunday, February 25, 2007, 10:42:57 PM, Sivakatirswami wrote:

> How can one block creation of new pages in any group

> where, for example, {$Group} = TODO*

Try this in config.php:

$page = PageVar($pagename, '$FullName');
$group = PageVar($pagename, '$Group');
if(preg_match("/^TODO(.*)$/i", $group))
   if(!PageExists($page)) Redirect('Main.HomePage');

Or use some ErrorPage to be redirected to.


Hans


_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to