Ticket #26307: 26307.2.patch
File 26307.2.patch, 484 bytes (added by , 11 years ago) |
---|
-
src/wp-includes/js/wplink.js
181 181 html = '<a href="' + attrs.href + '"'; 182 182 183 183 if ( attrs.title ) 184 html += ' title="' + attrs.title + '"';184 html += ' title="' + attrs.title.replace( /"/g, '"' ) + '"'; 185 185 if ( attrs.target ) 186 186 html += ' target="' + attrs.target + '"'; 187 187