diff options
Diffstat (limited to 'forum/htdocs')
-rw-r--r-- | forum/htdocs/config.php.defaults | 11 | ||||
-rw-r--r-- | forum/htdocs/index.php | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/forum/htdocs/config.php.defaults b/forum/htdocs/config.php.defaults index 7f0d643..ec29e89 100644 --- a/forum/htdocs/config.php.defaults +++ b/forum/htdocs/config.php.defaults @@ -7,4 +7,15 @@ $PERMSTORE = $DATA_DIR . "/files"; $IMAGECACHE = $DATA_DIR . "/imagecache"; $LOG_FILE = $DATA_DIR . "/forum.log"; $FILE_MAX_SIZE = 5*1024; // 5kb +$FORUM_URL = "http://www.example.com/forum"; +$FORUM_TITLE = "Example CMS"; + +/** + * Mail Configuration + */ +$subject_prefix = "CMS notifier"; +$sender = "Example User <info@example.com>"; +$replyto = $sender; +$footer = "---- +Happy happy joy joy!"; ?> diff --git a/forum/htdocs/index.php b/forum/htdocs/index.php index ab63d9b..aa3be9c 100644 --- a/forum/htdocs/index.php +++ b/forum/htdocs/index.php @@ -29,7 +29,7 @@ include_once($UTIL_DIR . "/clientinfo.php"); <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>ExecutionForum</title> +<title><?php echo $FORUM_TITLE; ?></title> <meta name="MSSmartTagsPreventParsing" content="true"/> <meta http-equiv="Content-Type" content="text/html"/> <link rel="author" title="Bent Bisballe Nyeng" href="http://www.aasimon.org"/> |