diff options
author | Hari Sankar R <hsr@theinglorio.us> | 2012-04-03 22:56:06 +0530 |
---|---|---|
committer | Hari Sankar R <hsr@theinglorio.us> | 2012-04-03 22:56:06 +0530 |
commit | b81a5afc2541e035b78bfe5f7c8374c9d4ae6b9f (patch) | |
tree | 041a9f5aac00895c6d9db33544a19b2ec09fef1a /phpBB/includes/ucp/ucp_prefs.php | |
parent | 084e1ae5603f4204945d25afcfabaeb1198df20f (diff) | |
download | forums-b81a5afc2541e035b78bfe5f7c8374c9d4ae6b9f.tar forums-b81a5afc2541e035b78bfe5f7c8374c9d4ae6b9f.tar.gz forums-b81a5afc2541e035b78bfe5f7c8374c9d4ae6b9f.tar.bz2 forums-b81a5afc2541e035b78bfe5f7c8374c9d4ae6b9f.tar.xz forums-b81a5afc2541e035b78bfe5f7c8374c9d4ae6b9f.zip |
[ticket/10561] Changes made to function phpbb_style_is_active().
Fixed return type, documented function and, removed
style_id from fetch.
PHPBB3-10561
Diffstat (limited to 'phpBB/includes/ucp/ucp_prefs.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_prefs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_prefs.php b/phpBB/includes/ucp/ucp_prefs.php index 0df8acd5af..e81bd1e1bb 100644 --- a/phpBB/includes/ucp/ucp_prefs.php +++ b/phpBB/includes/ucp/ucp_prefs.php @@ -62,7 +62,7 @@ class ucp_prefs if ($submit) { $data['style'] = ($config['override_user_style']) ? $config['default_style'] : - (style_verify($data['style']) ? $data['style'] : ((int) $user->data['user_style'])); + (phpbb_style_is_active($data['style']) ? $data['style'] : ((int) $user->data['user_style'])); $error = validate_data($data, array( 'dateformat' => array('string', false, 1, 30), |