[TYPO3-dev] A clipboard issue

Tapio Markula tapio.markula at xetpoint.fi
Tue Aug 18 10:10:30 CEST 2009



Hi

In the clipboard core file the usage of 
'top.rawurlencodeAndRemoveSiteUrl' has been removed, for examle

		}
				// Edit:
		if (!$this->fileMode && $elCount)	{
			$opt[]='<option value="' . htmlspecialchars("window.location.href='" 
. $this->editUrl() . 
"&returnUrl='+top.rawurlencodeAndRemoveSiteUrl(window.location.href);") 
. '">' . $this->clLabel('edit', 'rm') . '</option>';
		}
now like before

				// Edit:
		if (!$this->fileMode && $elCount)	{
			$opt[]='<option value="' . htmlspecialchars("window.location.href='" 
. $this->editUrl() . 
"&returnUrl='+top.rawurlencode(window.location.href);") . '">' . 
$this->clLabel('edit', 'rm') . '</option>';
		}


What is the idea behind these changes. I have in an XCLASS for Typo3 4.2 
branch 'rawurlencodeAndRemoveSiteUrl' - does that work anymore




More information about the TYPO3-dev mailing list