summaryrefslogtreecommitdiff
path: root/forum/htdocs
diff options
context:
space:
mode:
authordeva <deva>2008-10-13 12:39:17 +0000
committerdeva <deva>2008-10-13 12:39:17 +0000
commit71f846affc51a062261aab575e53c37d2972bdfd (patch)
tree958ed1799d43f57e9c1eb68eda3beff30a04ad7b /forum/htdocs
parent42032d4bd8dd0c9772afd6ef7c1b09104cb22e8b (diff)
Removed all hardcoded executionroom.com references.
Diffstat (limited to 'forum/htdocs')
-rw-r--r--forum/htdocs/config.php.defaults11
-rw-r--r--forum/htdocs/index.php2
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"/>