* attention: incompatible to previous version! * introduced _tpl_action() (wrapper similar to tpl_action()) * improved discussion and user page functions * made them work independent from config * added full control to how the page links are built (with placeholders @ID@ and @USER@) * config option changes: removed 'discussNSreverse', renamed 'discussionNS' and 'userNS' to 'discussionPage' and 'userPage'
11 lines
301 B
PHP
11 lines
301 B
PHP
<?php
|
|
/*
|
|
* default configuration settings
|
|
*
|
|
*/
|
|
|
|
$conf['tagline'] = 'This is the tagline - explaining what this site is about.';
|
|
$conf['discussionPage'] = 'discussion:@ID@';
|
|
$conf['userPage'] = 'user:@USER@:';
|
|
$conf['sidebarID'] = 'sidebar';
|
|
$conf['hideTools'] = 0;
|