Skip to content
Snippets Groups Projects
Commit 0b9b3258 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- fixed bug in database.mysql

- removed redundant options from hostname.conf
parent 18f8246f
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -66,7 +66,7 @@ CREATE TABLE comments ( ...@@ -66,7 +66,7 @@ CREATE TABLE comments (
cid int(6) DEFAULT '0' NOT NULL auto_increment, cid int(6) DEFAULT '0' NOT NULL auto_increment,
pid int(6) DEFAULT '0' NOT NULL, pid int(6) DEFAULT '0' NOT NULL,
lid int(6) DEFAULT '0' NOT NULL, lid int(6) DEFAULT '0' NOT NULL,
link varchar(16) DEFAULT '' NOT NULL; link varchar(16) DEFAULT '' NOT NULL,
author int(6) DEFAULT '0' NOT NULL, author int(6) DEFAULT '0' NOT NULL,
subject varchar(64) DEFAULT '' NOT NULL, subject varchar(64) DEFAULT '' NOT NULL,
comment text NOT NULL, comment text NOT NULL,
......
...@@ -69,16 +69,6 @@ $submission_votes = array("neutral (+0)" => "+ 0", ...@@ -69,16 +69,6 @@ $submission_votes = array("neutral (+0)" => "+ 0",
"post it (+1)" => "+ 1", "post it (+1)" => "+ 1",
"dump it (-1)" => "- 1"); "dump it (-1)" => "- 1");
#
# Submission moderation thresholds:
# registered users can vote whether they think the story should
# be posted or not. When enough people vote to post a story, the
# story is pushed over the threshold and up it goes on the public
# page. On the other hand, when too many people voted to drop a
# story, the story will get trashed.
$submission_post_threshold = "3";
$submission_dump_threshold = "-2";
# #
# Submission rate: # Submission rate:
# defines the submission rate for the different types of content # defines the submission rate for the different types of content
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment