Announcement

Do not use the forums to submit bug reports, feature requests or patches, submit a New Ticket instead.

#1 2010-10-20 09:18:00

Willy
New member
Registered: 2010-10-20
Posts: 1

Can't specify target in Insert File Link dialog

Xinha 0.96.1 Revision: 1263 IE 8

The target dropdown don't show at all.
I have set $IMConfig['link_enable_target'] = true; in /plugins/ExtendedFilemanager/Config.inc.php

This is especially needed when linking to a .pdf file from an iframe and want the .pdf show up in a new _blank window rather than in the iframe.

I found the code below in manager.php and tried to alter the visibility style to visible or just delete the style but, no go.

<?php } else if($insertMode=="link" && $IMConfig['link_enable_target'] !== false) {?><label for="f_align" id="f_target_label">Target Window</label>
            <select id="f_target" style="width:125px;">
              <option value="">None (use implicit)</option>
              <option value="_blank">New window (_blank)</option>
              <option value="_self">Same frame (_self)</option>
              <option value="_top">Top frame (_top)</option>
            </select><br /><br />
<input type="text" name="f_other_target" id="f_other_target" style="visibility:hidden; width:120px;" />
            <?php } ?>

Offline

Board footer

Powered by FluxBB