Index: t3lib/class.t3lib_parsehtml_proc.php
===================================================================
--- t3lib/class.t3lib_parsehtml_proc.php (revision 2530)
+++ t3lib/class.t3lib_parsehtml_proc.php (working copy)
@@ -727,6 +727,9 @@
$page = t3lib_BEfunc::getRecord('pages', $idPart);
if (is_array($page)) { // Page must exist...
$href = $siteUrl.'?id='.$link_param;
+ }
+ elseif (strtolower(substr($link_param,0,7))=='record:') { //linkHandler - start of links with "record:" is allowed
+ $href = $link_param;
} else {
#$href = '';
$href = $siteUrl.'?id='.$link_param;