diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2007-07-25 13:01:23 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2007-07-25 13:01:23 +0000 |
commit | d171762bc9fb5d6aedf36fad9d76dd362bdcdc78 (patch) | |
tree | 9c1ecf0b0a6c8922413d3f83d03dc634cf68b352 /phpBB/styles | |
parent | 09bdc7297edb4f149c0a340109bc81d1f6444aea (diff) | |
download | forums-d171762bc9fb5d6aedf36fad9d76dd362bdcdc78.tar forums-d171762bc9fb5d6aedf36fad9d76dd362bdcdc78.tar.gz forums-d171762bc9fb5d6aedf36fad9d76dd362bdcdc78.tar.bz2 forums-d171762bc9fb5d6aedf36fad9d76dd362bdcdc78.tar.xz forums-d171762bc9fb5d6aedf36fad9d76dd362bdcdc78.zip |
small fixes.
#13794 : Raised the used error level by one
#13763 : Removed an old Beta2 compatibility fix
#13527 : cleaned up the code
#13525 : Changed templates as proposed by damnian
#11515 : added explanation about CPF checkboxes
git-svn-id: file:///svn/phpbb/trunk@7943 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_profile_profile_info.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_register.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_profile_profile_info.html b/phpBB/styles/prosilver/template/ucp_profile_profile_info.html index 39c8ff48b2..329597f542 100644 --- a/phpBB/styles/prosilver/template/ucp_profile_profile_info.html +++ b/phpBB/styles/prosilver/template/ucp_profile_profile_info.html @@ -58,7 +58,7 @@ <!-- ENDIF --> <!-- BEGIN profile_fields --> <dl> - <dt><label for="{profile_fields.FIELD_ID}">{profile_fields.LANG_NAME}:<!-- IF profile_fields.S_REQUIRED --> *<!-- ENDIF --></label> + <dt><label <!-- IF profile_fields.FIELD_ID -->for="{profile_fields.FIELD_ID}"<!-- ENDIF -->>{profile_fields.LANG_NAME}:<!-- IF profile_fields.S_REQUIRED --> *<!-- ENDIF --></label> <!-- IF profile_fields.LANG_EXPLAIN --><br /><span>{profile_fields.LANG_EXPLAIN}</span><!-- ENDIF --></dt> <!-- IF profile_fields.ERROR --><dd class="error">{profile_fields.ERROR}</dd><!-- ENDIF --> <dd>{profile_fields.FIELD}</dd> diff --git a/phpBB/styles/prosilver/template/ucp_register.html b/phpBB/styles/prosilver/template/ucp_register.html index e9e17fc2cf..66245f3e6d 100644 --- a/phpBB/styles/prosilver/template/ucp_register.html +++ b/phpBB/styles/prosilver/template/ucp_register.html @@ -63,7 +63,7 @@ <!-- BEGIN profile_fields --> <dl> - <dt><label for="{profile_fields.FIELD_ID}">{profile_fields.LANG_NAME}:<!-- IF profile_fields.S_REQUIRED --> *<!-- ENDIF --></label> + <dt><label <!-- IF profile_fields.FIELD_ID -->for="{profile_fields.FIELD_ID}" <!-- ENDIF -->>{profile_fields.LANG_NAME}:<!-- IF profile_fields.S_REQUIRED --> *<!-- ENDIF --></label> <!-- IF profile_fields.LANG_EXPLAIN --><br /><span>{profile_fields.LANG_EXPLAIN}</span><!-- ENDIF --> <!-- IF profile_fields.ERROR --><br /><span class="error">{profile_fields.ERROR}</span><!-- ENDIF --></dt> <dd>{profile_fields.FIELD}</dd> |