1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/11538] Add function phpbb_validate_colour for validating colours

It will be possible to use this function via the validate_data() function
interface that has already been used previously. Thus, this new function
will extend the capabilities of validate_data() to checking hex color
values.

PHPBB3-11538
This commit is contained in:
Marc Alexander
2013-05-16 13:22:43 +02:00
parent 204cdb2164
commit 1715619fda
3 changed files with 25 additions and 3 deletions

View File

@@ -423,7 +423,7 @@ class acp_groups
}
// Validate submitted colour value
if ($colour_error = validate_data($submit_ary, array('colour' => array('match', true, '/^([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$/'))))
if ($colour_error = validate_data($submit_ary, array('colour' => array('colour'))))
{
// Replace "error" string with its real, localised form
$error = array_merge($error, array_map(array(&$user, 'lang'), $colour_error));