Opened 16 years ago
Closed 16 years ago
#14731 closed defect (bug) (fixed)
wp-signup.php does not validate
| Reported by: | sorich87 | Owned by: | sorich87 |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.1 |
| Component: | Validation | Version: | 3.0.1 |
| Severity: | major | Keywords: | has-patch |
| Cc: | Focuses: |
Description
Line 89: end tag for element p which is not open.
The attached patch fixes the error.
Attachments (2)
Change History (7)
#2
@
16 years ago
- Cc added
- Status new → accepted
Broken? Here is the complete code:
if ( !is_user_logged_in() ) {
print '<p>(<strong>' . __( 'Your address will be ' );
if ( !is_subdomain_install() )
print $current_site->domain . $current_site->path . __( 'sitename' );
else
print __( 'domain.' ) . $site_domain . $current_site->path;
echo '.</strong>) ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '</p>';
}
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
The string shown in that patch is also broken...