in 'library\template\template.php', replace:
Code: Select all
ob_start();
include($file);
$content = ob_get_contents();
ob_end_clean();
Code: Select all
ob_start();
echo "<!-- BEGIN:$file -->";
include($file);
$content = ob_get_contents();
echo "<!-- END:$file -->";
ob_end_clean();
Don't forget to comment out/delete the new lines before putting your site live.