diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-11-03 07:57:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-11-03 07:57:28 +0000 |
commit | 7f2e4572fa1f1e6bcc14f0cc948f6fd988a7ff92 (patch) | |
tree | 4d8033ff512ecfe120e135b5bf012084af675ffe /includes/config.inc | |
parent | fb348c6a90f15c6f64d8e0e12056a55e778843c3 (diff) | |
download | brdo-7f2e4572fa1f1e6bcc14f0cc948f6fd988a7ff92.tar.gz brdo-7f2e4572fa1f1e6bcc14f0cc948f6fd988a7ff92.tar.bz2 |
- fixed bug in search.php
- fixed bug in discussion.php
- theme update: comment() now takes 3 arguments:
$comment - an object with comment data
$link - a link to the reply form of that particular
comment
$thread - the subthread of that particular comment
- theme 'marvin' and theme 'zaphod' are updated, theme
'unconed' is left to be done
Diffstat (limited to 'includes/config.inc')
-rw-r--r-- | includes/config.inc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/includes/config.inc b/includes/config.inc index c5fdffd8f..fa943fedb 100644 --- a/includes/config.inc +++ b/includes/config.inc @@ -11,17 +11,17 @@ #$dbname = "droporg"; ### http://beta.drop.org/: -$dbhost = "zind.net"; -$dbuname = "dries"; -$dbpass = "Abc123"; -$dbname = "dries"; - -### http://dione/: -#$dbhost = ""; +#$dbhost = "zind.net"; #$dbuname = "dries"; -#$dbpass = "oakley"; +#$dbpass = "Abc123"; #$dbname = "dries"; +### http://dione/: +$dbhost = ""; +$dbuname = "dries"; +$dbpass = "oakley"; +$dbname = "dries"; + # # Name of the site # @@ -118,7 +118,7 @@ $submission_votes = array("neutral (+0)" => "+ 0", # # Submission moderation thresholds: # -$submission_post_threshold = "2"; +$submission_post_threshold = "3"; $submission_dump_threshold = "-2"; -?>
\ No newline at end of file +?> |