#4946 closed defect (bug) (fixed)
Duplicate code oddness in wp_insert_attachement
| Reported by: | Otto42 | Owned by: | |
|---|---|---|---|
| Priority: | lowest | Milestone: | 2.3 |
| Component: | Optimization | Version: | 2.3 |
| Severity: | trivial | Keywords: | |
| Cc: | Focuses: |
Description
Just noticed this bit of code in SVN:
`
if ( isset($to_ping) )
$to_ping = preg_replace('|\s+|', "\n", $to_ping);
else
$to_ping = ;
`
...is duplicated in the wp_insert_attachment function. Line numbers 1345 and 1363.
Accidental copy/paste, or is there a reason for this that is cleverer than my current ability to fathom?
Change History (3)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
(In [6086]) Remove duplicate code from wp_insert_attachment(). Update to use sanitize_post. Props Otto42. fixes #4946