Index: typo3/class.browse_links.php
===================================================================
--- typo3/class.browse_links.php (revision 6354)
+++ typo3/class.browse_links.php (working copy)
@@ -1268,6 +1268,97 @@
// Adding the menu and header to the top of page:
$content.=$this->printCurrentUrl($this->curUrlInfo['info']).' ';
+ // Prepare the form with link options
+ $linkOptions = '
+
+
+
+
+
+
+';
+
+ // Target:
+ $linkTarget = '
+
+
+ ';
+
// Depending on the current action we will create the actual module content for selecting a link:
switch($this->act) {
case 'mail':
@@ -1286,6 +1377,7 @@
';
$content.=$extUrl;
+ $content .= $linkOptions;
break;
case 'url':
$extUrl='
@@ -1303,6 +1395,7 @@
';
$content.=$extUrl;
+ $content .= $linkOptions . $linkTarget;
break;
case 'file':
case 'folder':
@@ -1338,6 +1431,7 @@