Opened 16 years ago
Closed 16 years ago
#483 closed defect (bug) (fixed)
<div> inside <p> causes validation error - fix shown below
Reported by: | reprint | Owned by: | |
---|---|---|---|
Milestone: | Priority: | minor | |
Severity: | Version: | ||
Component: | Keywords: | markup validation error | |
Cc: |
Description
In bp-core-widgets.php, this line
<p class="create-account"><div class="visit generic-button"><a href="http://mysportscar.org/register" title="Create Account">Create Account</a></div></p>
should be
<p class="create-account" /><div class="visit generic-button"><a href="<?php bp_signup_page() ?>" title="<?php _e('Create Account', 'buddypress') ?>"><?php _e('Create Account', 'buddypress') ?></a></div><p />
This clears a markup validation error. Not sure what to do other than report it here
Note: See
TracTickets for help on using
tickets.
(In [1160]) Fixes #483