never mind, sorry

Comments

fringedgentian’s picture

fnapo’s picture

Same to me when I try to modify a content template :-(
How did you solved? (did you solved?)

squinternata’s picture

same to me :(

fnapo’s picture

It seems to be a recursive variable problem from CCK.
I (temporary) solved by changing contemplate/contemplate.module ~ line 709:
from
if ($depth >= variable_get('contemplate_max_recursion_depth', 10)) {
to
if ($depth >= variable_get('contemplate_max_recursion_depth', 1)) {

I strongly reccommend using the tpl way to modify the design; you can put a
node--contentype.tpl.php in the theme tpl directory and modify directly the file.

<3

fnapo’s picture

Issue summary: View changes

there is no delete

mactoph’s picture

Issue summary: View changes

Another way to temporarily get around the issue is to go to /admin/config/contemplate and set "Max recursion depth" to 0.