Increased subject length
This commit is contained in:
parent
6bbc27767e
commit
16b6548b4a
@ -28,7 +28,7 @@ SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
|||||||
CREATE TABLE IF NOT EXISTS `posts` (
|
CREATE TABLE IF NOT EXISTS `posts` (
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`thread` int(11) DEFAULT NULL,
|
`thread` int(11) DEFAULT NULL,
|
||||||
`subject` varchar(25) NOT NULL,
|
`subject` varchar(40) NOT NULL,
|
||||||
`email` varchar(30) NOT NULL,
|
`email` varchar(30) NOT NULL,
|
||||||
`name` varchar(25) NOT NULL,
|
`name` varchar(25) NOT NULL,
|
||||||
`trip` varchar(15) DEFAULT NULL,
|
`trip` varchar(15) DEFAULT NULL,
|
||||||
|
2
post.php
2
post.php
@ -97,7 +97,7 @@
|
|||||||
// Check string lengths
|
// Check string lengths
|
||||||
if(strlen($post['name']) > 25) error(sprintf(ERROR_TOOLONG, 'name'));
|
if(strlen($post['name']) > 25) error(sprintf(ERROR_TOOLONG, 'name'));
|
||||||
if(strlen($post['email']) > 30) error(sprintf(ERROR_TOOLONG, 'email'));
|
if(strlen($post['email']) > 30) error(sprintf(ERROR_TOOLONG, 'email'));
|
||||||
if(strlen($post['subject']) > 25) error(sprintf(ERROR_TOOLONG, 'subject'));
|
if(strlen($post['subject']) > 40) error(sprintf(ERROR_TOOLONG, 'subject'));
|
||||||
if(strlen($post['body']) > MAX_BODY) error(ERROR_TOOLONGBODY);
|
if(strlen($post['body']) > MAX_BODY) error(ERROR_TOOLONGBODY);
|
||||||
if(!(!$OP && $post['has_file']) && strlen($post['body']) < 1) error(ERROR_TOOSHORTBODY);
|
if(!(!$OP && $post['has_file']) && strlen($post['body']) < 1) error(ERROR_TOOSHORTBODY);
|
||||||
if(strlen($post['password']) > 20) error(sprintf(ERROR_TOOLONG, 'password'));
|
if(strlen($post['password']) > 20) error(sprintf(ERROR_TOOLONG, 'password'));
|
||||||
|
Loading…
Reference in New Issue
Block a user