Ticket #26307: 26307.patch
| File 26307.patch, 484 bytes (added by , 13 years ago) |
|---|
-
src/wp-includes/js/wplink.js
173 173 html = '<a href="' + attrs.href + '"'; 174 174 175 175 if ( attrs.title ) 176 html += ' title="' + attrs.title + '"';176 html += ' title="' + attrs.title.replace( /"/g, '"' ) + '"'; 177 177 if ( attrs.target ) 178 178 html += ' target="' + attrs.target + '"'; 179 179