Bug #22445 » 14095_v2.diff
t3lib/class.t3lib_clipboard.php (working copy) | ||
---|---|---|
$opt[]='<option value="" selected="selected">'.$this->clLabel('menu','rm').'</option>';
|
||
// Import / Export link:
|
||
if ($elCount && t3lib_extMgm::isLoaded('impexp')) {
|
||
$opt[] = '<option value="'.htmlspecialchars("window.location.href='".$this->backPath.'mod.php?M=xMOD_tximpexp'.$this->exportClipElementParameters().'\';').'">'.$this->clLabel('export','rm').'</option>';
|
||
$opt[] = '<option value="'.htmlspecialchars("window.location.href='".$this->backPath.t3lib_extMgm::extRelPath('impexp').'app/index.php'.$this->exportClipElementParameters().'\';').'">'.$this->clLabel('export','rm').'</option>';
|
||
}
|
||
// Edit:
|
||
if (!$this->fileMode && $elCount) {
|
||
... | ... | |
}
|
||
}
|
||
return '&'.implode('&', $params);
|
||
return '?'.implode('&', $params);
|
||
}
|
||