Skip to content

Commit

Permalink
Inserted missing closing quote for geenerated href attribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
tjstankus committed Jun 29, 2009
1 parent 122d526 commit ef1e90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/aftfilr/templates/tinymce_plugin/js/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var <%= tinymce_dialog_name %> = {

insert : function(document_url) {
var link_content = tinyMCEPopup.editor.selection.getContent();
var link_html = '<a href="' + document_url + '>' + link_content + '</a>';
var link_html = '<a href="' + document_url + '">' + link_content + '</a>';
tinyMCEPopup.editor.execCommand('mceInsertContent', false, link_html);
tinyMCEPopup.close();
}
Expand Down

0 comments on commit ef1e90b

Please sign in to comment.