#2995 closed defect (bug) (fixed)
rel="nofollow" duplicated when comments are edited
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | General | Version: | 2.1 |
| Severity: | normal | Keywords: | comments editing nofollow bg|has-patch |
| Cc: |
Description
Under WordPress v2.0.4, the rel="nofollow" attribute added to links inside the comments is duplicated whenever a comment is edited.
For example, a link inside a comment displays the following structure are the first posting:
<a href="url" rel="nofollow">title</a>
After the first edit, the structure becomes:
<a href="url" rel="nofollow" rel="nofollow">title</a>
After the second edit, the structure becomes:
<a href="url" rel="nofollow" rel="nofollow" rel="nofollow">title</a>
And so forth.
Fortunately, the rel="nofollow" attributes are visible in the comment editing interface and can be removed to return the links to only one rel="nofollow" attribute.
I have tested this with both my current configuration and under the Default theme with no active plugins.
Attachments (1)
Change History (6)
- Keywords bg|has-patch added
- Owner changed from anonymous to filosofo
- Version changed from 2.0.4 to 2.1
- Resolution set to fixed
- Status changed from new to closed
comment:4
foolswisdom — 7 years ago
- Milestone changed from 2.1 to 2.0.5

My patch fixes this problem.