From: Geoffrey T. D. <da...@us...> - 2001-12-11 22:41:42
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv9145 Modified Files: index.php Log Message: Name the wiki (SF task #34142). New config define: WIKI_NAME, which is used to generate a KEYWORDS meta tag, and also for the channel title in RSS output. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -r1.38 -r1.39 *** index.php 2001/12/07 05:37:13 1.38 --- index.php 2001/12/11 22:41:38 1.39 *************** *** 45,48 **** --- 45,53 ---- ///////////////////////////////////////////////////////////////////// + // The name of your wiki. + // This is used to generate a keywords meta tag in the HTML templates, + // and during RSS generation for the <title> of the RSS channel. + //define('WIKI_NAME', 'PhpWiki'); + // If set, we will perform reverse dns lookups to try to convert the users // IP number to a host name, even if the http server didn't do it for us. |