aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_profile_fields.php
diff options
context:
space:
mode:
authorJim Wigginton <terrafrost@phpbb.com>2009-02-26 23:46:46 +0000
committerJim Wigginton <terrafrost@phpbb.com>2009-02-26 23:46:46 +0000
commit2e50df9e1a140f322e091d74500e05b6545a54e1 (patch)
tree15ab2bfacfaebfeedb862deed1ce56d6df2b53cf /phpBB/includes/functions_profile_fields.php
parent354f9edd4e747b6927a8b2c1e454be1c366cf232 (diff)
downloadforums-2e50df9e1a140f322e091d74500e05b6545a54e1.tar
forums-2e50df9e1a140f322e091d74500e05b6545a54e1.tar.gz
forums-2e50df9e1a140f322e091d74500e05b6545a54e1.tar.bz2
forums-2e50df9e1a140f322e091d74500e05b6545a54e1.tar.xz
forums-2e50df9e1a140f322e091d74500e05b6545a54e1.zip
Fixed bug #'ers 41295, 41385, 41955, 41705 and 41985
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9342 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_profile_fields.php')
-rw-r--r--phpBB/includes/functions_profile_fields.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php
index cc59648e54..60abe122ce 100644
--- a/phpBB/includes/functions_profile_fields.php
+++ b/phpBB/includes/functions_profile_fields.php
@@ -39,8 +39,8 @@ class custom_profile
switch ($mode)
{
case 'register':
- // If the field is required we show it on the registration page and do not show hidden fields
- $sql_where .= ' AND f.field_show_on_reg = 1 AND f.field_no_view = 0';
+ // If the field is required we show it on the registration page
+ $sql_where .= ' AND f.field_show_on_reg = 1';
break;
case 'profile':
@@ -1086,4 +1086,4 @@ class custom_profile_admin extends custom_profile
}
}
-?>
+?> \ No newline at end of file