summaryrefslogtreecommitdiff
path: root/config.inc
diff options
context:
space:
mode:
Diffstat (limited to 'config.inc')
-rw-r--r--config.inc40
1 files changed, 25 insertions, 15 deletions
diff --git a/config.inc b/config.inc
index 6eef82be2..7188db00e 100644
--- a/config.inc
+++ b/config.inc
@@ -21,6 +21,13 @@ $contact_email = "droppies@zind.net";
$contact_signature = "Kind regards,\n\n-- the drop.org crew\nhttp://www.drop.org/";
#
+# Notify:
+# Set to '1' to receive an e-mail when news has been submitted
+# through submit.php
+#
+$notify = 0;
+
+#
# Notify information:
# The notify information will be used to send out automated mails
# for internal purpose.
@@ -44,12 +51,6 @@ $comments_meta_reasons = array('Off topic', 'Redundant', 'Insightfull', 'As is',
#
$categories = array('Announcements', 'Coding', 'Geeking', 'Drop.org', 'Gaming', 'Girls', 'Graphics', 'Hardware', 'Humor', 'Internet', 'Music', 'Movies', 'Politics', 'Science', 'Software', 'Space', 'Webdesign', 'Quickies');
-#
-# Notify:
-# Set to '1' to receive an e-mail when news has been submitted
-# through submit.php
-#
-$notify = 1;
#
# Allowed HTML tags:
@@ -62,11 +63,28 @@ $allowableHTML = array('B','/B','I','/I','P .*','P','/P','A .*','/A','LI','OL'
$anonymous = "Anonymous Chicken";
#
-#
# Default theme:
#
$cfg_theme = "default";
+#
+# Submission moderation votes:
+#
+// NOTE: changing $submission_votes will affect the integrity of your
+// database. In short, the database field user.history will
+// become invalid, and will need to be reset! Please, do not
+// just change this setting unless you have an empty database
+// or unless you know what you are doing.
+$submission_votes = array("neutral (+0)" => "+ 0",
+ "post it (+1)" => "+ 1",
+ "dump it (-1)" => "- 1");
+
+#
+# Submission moderation thresholds:
+#
+$submission_post_threshold = "2";
+$submission_dump_threshold = "-2";
+
#
# Debug flag:
# Set to '1' if you are using Windows so the engine won't try
@@ -74,12 +92,4 @@ $cfg_theme = "default";
# to '0'
$system = 0;
-/*
-class config {
- var $path = "/home/buytaert/public_html/projects/drop";
-}
-
-if (!$config) $config = new config();
-*/
-
?> \ No newline at end of file