aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-05-19 11:29:11 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-05-19 11:29:11 +0200
commitb49ce5eb3a54a6c256955d3510fe409a6f4511aa (patch)
tree33c60d3e9d95f85284c79976ce9998956626e68c /phpBB/includes/functions_user.php
parent0a5988ec1f3d72afb17b87d6cd74f60b646bae42 (diff)
downloadforums-b49ce5eb3a54a6c256955d3510fe409a6f4511aa.tar
forums-b49ce5eb3a54a6c256955d3510fe409a6f4511aa.tar.gz
forums-b49ce5eb3a54a6c256955d3510fe409a6f4511aa.tar.bz2
forums-b49ce5eb3a54a6c256955d3510fe409a6f4511aa.tar.xz
forums-b49ce5eb3a54a6c256955d3510fe409a6f4511aa.zip
[ticket/11538] Rename phpbb_validate_colour to phpbb_validate_hex_colour
PHPBB3-11538
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index b7fdb7a6ad..f8e1fcaa45 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1903,9 +1903,10 @@ function validate_jabber($jid)
* Validate hex colour value
*
* @param string $colour The hex colour value
-* @return bool/string Error message if colour value is incorrect, false if it fits the hex colour code
+* @return bool|string Error message if colour value is incorrect, false if it
+* fits the hex colour code
*/
-function phpbb_validate_colour($colour)
+function phpbb_validate_hex_colour($colour)
{
if (empty($colour))
{