aboutsummaryrefslogtreecommitdiff
path: root/data/config.php.dist
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-31 10:12:46 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-31 10:12:46 +0000
commit5188e3a704e1f1dd9cf7de2366ee633a2b1cdf7b (patch)
tree84ab2939926dcb7f41a4578fbe3a40d2919c5cc0 /data/config.php.dist
parentadc00b25bbe5bd4099e58cad57970d5fc65af4b7 (diff)
downloadsemanticscuttle-5188e3a704e1f1dd9cf7de2366ee633a2b1cdf7b.tar.gz
semanticscuttle-5188e3a704e1f1dd9cf7de2366ee633a2b1cdf7b.tar.bz2
add admin email and admin users to default config dist file
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@482 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'data/config.php.dist')
-rw-r--r--data/config.php.dist25
1 files changed, 25 insertions, 0 deletions
diff --git a/data/config.php.dist b/data/config.php.dist
index 2615bc6..9fc37ca 100644
--- a/data/config.php.dist
+++ b/data/config.php.dist
@@ -103,4 +103,29 @@ $dbname = 'scuttle';
*/
$dbhost = 'localhost';
+
+/***************************************************
+ * Users
+ */
+
+/**
+ * Contact address for the site administrator.
+ * Used as the FROM address in password retrieval e-mails.
+ *
+ * @var string
+ */
+$adminemail = 'admin@example.org';
+
+/**
+ * Array of user names who have admin rights
+ *
+ * Example:
+ * <code>
+ * $admin_users = array('adminnickname', 'user1nick', 'user2nick');
+ * </code>
+ *
+ * @var array
+ */
+$admin_users = array();
+
?>