--- class.tslib_content_content.php.bak 2014-02-25 14:36:38.000000000 +0100 +++ class.tslib_content_content.php 2014-02-25 14:43:27.000000000 +0100 @@ -140,6 +140,9 @@ class tslib_content_Content extends tsli $cObj->start($row, $conf['table']); $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey); $cobjValue .= $tmpValue; + } else { + //debug($conf['table'] . ':' . $row['uid'], 'Content already being rendered!'); + $cobjValue .= '
The content element ' . ($conf['table'] . ':' . $row['uid']) . ' has already being rendered! See tslib/content/class.tslib_content_content.php and issue 20541 on forge.
'; } } } --- class.tslib_content_records.php.bak 2014-02-25 14:36:23.000000000 +0100 +++ class.tslib_content_records.php 2014-02-25 14:42:55.000000000 +0100 @@ -124,6 +124,9 @@ class tslib_content_Records extends tsli $cObj->start($row, $val['table']); $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey); $theValue .= $tmpValue; + } else { + //debug($val['table'] . ':' . $val['id'], 'Record already being rendered!'); + $theValue .= '
The record ' . ($val['table'] . ':' . $val['id']) . ' has already being rendered! See tslib/content/class.tslib_content_records.php and issue 20541 on forge.
'; } } }