Index: typo3/classes/class.shortcutmenu.php
===================================================================
--- typo3/classes/class.shortcutmenu.php (revision 3792)
+++ typo3/classes/class.shortcutmenu.php (working copy)
@@ -499,7 +499,7 @@
$shortcutName = 'Shortcut'; // default name
$shortcutNamePrepend = '';
- $url = urldecode(t3lib_div::_POST('url'));
+ $url = t3lib_div::_POST('url');
$module = t3lib_div::_POST('module');
$motherModule = t3lib_div::_POST('motherModName');
Index: typo3/file_list.php
===================================================================
--- typo3/file_list.php (revision 3792)
+++ typo3/file_list.php (working copy)
@@ -348,10 +348,10 @@
// upload button
$theIcon = 'backPath,'gfx/upload.gif','width="18" height="16"').' title="'.$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:cm.upload',1)).'" alt="" />';
- $buttons['upload'] = ''.$theIcon.'';
+ $buttons['upload'] = ''.$theIcon.'';
$theIcon = 'backPath,'gfx/new_file.gif','width="18" height="16"').' title="'.$GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:cm.new',1)).'" alt="" />';
- $buttons['new'] = ''.$theIcon.'';
+ $buttons['new'] = ''.$theIcon.'';
return $buttons;
}