phptemplate.engine surrounds $content with comments - these should be included in the theme (i.e. page.tpl.php) not the theme engine.

/*phptemplate.engine Line 202*/
    'content'             => '<!-- begin content -->' . $content . '<!-- end content -->',
/*should read*/
    'content'             => $content,

CommentFileSizeAuthor
#1 92258.patch.txt971 bytesdopry
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dopry’s picture

Version: 5.0-beta1 » 5.x-dev
FileSize
971 bytes

Heres a patch....

Steven’s picture

Status: Needs review » Fixed

Yeah, those comment tags are very unnecessary. Committed to HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)