1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-20 13:21:54 +02:00

Validator class: added check for exact match on forbidden user names (in use with !), fixed statically called methods of the validator class generate warnings; Added new LAN for EXACT_MATCH error on forbidden usernames.

This commit is contained in:
berckoff
2012-01-13 13:06:11 +00:00
parent 669324f66d
commit 46759d8b31
2 changed files with 25 additions and 10 deletions

View File

@@ -118,6 +118,7 @@ define('LAN_USER_86', 'Maximum avatar size is --WIDTH-- x --HEIGHT-- pixels');
// Error messages for when user data is missing. Done this way so that other code can override the default messages
// FIXME - do we need this?
// - [Berckoff] Used in validator_class for error handling, maybe moved to a more suitable place?
if (!defined('USER_ERR_01')) { define('USER_ERR_01','Missing value'); }
if (!defined('USER_ERR_02')) { define('USER_ERR_02','Unexpected value'); }
if (!defined('USER_ERR_03')) { define('USER_ERR_03','Value contains invalid characters'); }
@@ -140,6 +141,7 @@ if (!defined('USER_ERR_19')) { define('USER_ERR_19','General error'); }
if (!defined('USER_ERR_20')) { define('USER_ERR_20','Image too wide'); }
if (!defined('USER_ERR_21')) { define('USER_ERR_21','Image too high'); }
if (!defined('USER_ERR_22')) { define('USER_ERR_22','Unspecified error'); }
if (!defined('USER_ERR_23')) { define('USER_ERR_23','Disallowed value (exact match)'); }
?>