Update of /cvsroot/phpcvsview/phpcvsview
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10361
Modified Files:
config.php
Log Message:
- Added config items for page title and page heading back in as these are currently required by the theme engine.
Index: config.php
===================================================================
RCS file: /cvsroot/phpcvsview/phpcvsview/config.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** config.php 22 Dec 2004 11:14:51 -0000 1.7
--- config.php 22 Dec 2004 11:18:47 -0000 1.8
***************
*** 25,28 ****
--- 25,33 ----
$config['password'] = "";
+ // The HTMLTitle and HTMLHeading are used purely for the generation of the
+ // resultant web pages.
+ $config['html_title'] = "phpCVSView Source Code Library";
+ $config['html_header'] = "phpCVSView Source Code Library";
+
// Setup whether to use GeSHi project code for syntax highlighting or not.
$config['UseGeSHi'] = true;
|