Skip to content

Commit

Permalink
Fix #12853: XHTML markup error during user registration validation
Browse files Browse the repository at this point in the history
It was not possible to validate new user registrations due to invalid
XHTML markup in account_page.php.

Signed-off-by: David Hicks <d@hx.id.au>
  • Loading branch information
maringer authored and davidhicks committed Mar 25, 2011
1 parent 42b9061 commit c06f67b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_page.php
Expand Up @@ -201,7 +201,7 @@
<?php
$t_projects = user_get_assigned_projects( auth_get_current_user_id() );
if( count( $t_projects ) > 0 ) {
echo '<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">';
echo '<div class="field-container ' . helper_alternate_class_no_attribute() . '">';
echo '<span class="display-label"><span>' . lang_get( 'assigned_projects' ) . '</span></span>';
echo '<div class="input">';
echo '<ul class="project-list">';
Expand Down

0 comments on commit c06f67b

Please sign in to comment.