Bug #19158 » 9060.diff
t3lib/class.t3lib_tsparser_ext.php (working copy) | ||
---|---|---|
}
|
||
if ($copyFile && @is_file($copyFile)) {
|
||
$p_field.='<img src="clear.gif" width="20" height="1" alt="" /><img'.t3lib_iconWorks::skinImg($GLOBALS['BACK_PATH'],'gfx/clip_copy.gif','width="12" height="12"').' border="0" alt="" /><input type="checkbox" name="_copyResource['.$params['name'].']" value="'.htmlspecialchars($copyFile).'" onClick="uFormUrl('.$aname.');if (this.checked) {alert(unescape(\''.rawurlencode(sprintf("This will make a copy of the current file, '%s'. Do you really want that?",$params['value'])).'\'));}" />';
|
||
$p_field .= '<img src="clear.gif" width="20" ' . 'height="1" alt="" /><img' . t3lib_iconWorks::skinImg($GLOBALS['BACK_PATH'], 'gfx/clip_copy.gif', 'width="12" height="12"') . ' border="0" alt="" /><input type="checkbox" ' . 'name="_copyResource[' . $params['name'] . ']" value="' . htmlspecialchars($copyFile) . '" onclick="uFormUrl(' . $aname . ');if (this.checked && !confirm(unescape(\'' . rawurlencode(sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_tsparser.xml:tsparser_ext.make_copy'), $params['value'])) . '\'))) this.checked=false;" />';
|
||
}
|
||
// Upload?
|
typo3/sysext/lang/locallang_tsparser.xml (revision 0) | ||
---|---|---|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||
<T3locallang>
|
||
<meta type="array">
|
||
<description>Labels for t3lib/class.t3lib_tsparser*.php files</description>
|
||
<type>module</type>
|
||
<labelContext type="array">
|
||
</labelContext>
|
||
</meta>
|
||
<data type="array">
|
||
<languageKey index="default" type="array">
|
||
<label index="tsparser_ext.make_copy">This will make a copy of the current file, '%s'. Do you really want that?</label>
|
||
</languageKey>
|
||
</data>
|
||
</T3locallang>
|