Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

fix tinymce link editor default of target:_new (See related posts)

When installed in Mambo, edit
mambos/editors/tinymce_exp/jscripts/tiny_mce/plugins/advlink/link.php
lines 253-258:
<select name="target" id="target">
          <option value="_self" selected>_self&nbsp;(<?php echo _insert_link_target_same ?>)</option>
          <option value="_blank">_blank&nbsp;(<?php echo _insert_link_target_blank ?>)</option>
          <!--<option value="_parent">_parent&nbsp;(<?php echo _insert_link_target_parent ?>)</option>
          <option value="_top">_top&nbsp;(<?php echo _insert_link_target_top ?>)</option>-->
</select>

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts