Changeset 27082
- Timestamp:
- 02/03/2014 08:16:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/wplink.js
r27080 r27082 181 181 html = '<a href="' + attrs.href + '"'; 182 182 183 if ( attrs.title ) 183 if ( attrs.title ) { 184 184 title = attrs.title.replace( /</g, '<' ).replace( />/g, '>' ).replace( /"/g, '"' ); 185 185 html += ' title="' + title + '"'; 186 if ( attrs.target ) 186 } 187 188 if ( attrs.target ) { 187 189 html += ' target="' + attrs.target + '"'; 190 } 188 191 189 192 html += '>';
Note: See TracChangeset
for help on using the changeset viewer.