|
|
View Message | Back to Messages |
Plasma Tue Feb 20 2007 at 12:25 am PAGE_TITLE and FORUM_TITLE need to be defined in settings.php
If they are not defined, then PHP sets them to the constant name, and you see "PAGE_TITLE" or "FORUM_TITLE" on your pages. If you want them to be blank, then set them to ''. For example:
define('FORUM_TITLE', '');
|
|