The comment form is created by calling the smarty {$COMMENTFORM} and in all cases this should work, I'm wondering if the config file is causing the problem. When I originally ported andreas08 I was pretty new to config files and I copied it from another template. Could you edit config.inc.php
Code: Select all
<?php # $Id: config.inc.php,v 1.3 2005/05/17 11:43:07 garvinhicking Exp $
$probelang = dirname(__FILE__) . '/lang_' . $serendipity['lang'] . '.inc.php';
if (file_exists($probelang)) {
include $probelang;
} else {
include dirname(__FILE__) . '/lang_en.inc.php';
}
$serendipity['smarty']->assign('CONST', get_defined_constants());
?>
Then reload/refresh andreas08. Not sure if that will work but I'd like to rule it out as a possible problem before we go too much further.