it does not seem to display the list of submitted items in the frontend, is this a known fact?
the table with class="list_entry" remains empty ...
it seems that in the view somewhere near line 258 somethings is not right
it does get the 'list_header' and 'list_footer' but the 'list_loop' that should be displayed in between does not turn up ...
// Display the submissions (via a loop)
if ($num_entries > 0) {
while ($submission = $query->fetchRow()) {
// fetch entered form-values
$values = unserialize($submission['body_serialized']);
$values[] = array('Date' => $submission['submitted_when']);
echo $list_header;
foreach ($values as $id=>$v) {
if (in_array($id, $inlist)) {
if (is_array($v['content'])) $v['content'] = implode('<br />', $v['content']);
$vals = array($v['title'] . ':', nl2br($v['content']));
echo str_replace($vars, $vals, $list_loop);
}
}
echo $list_footer;
}
}
is there anyone who had the same issue?