I'd like to see my contents in table form.So I tried to modified in my code. But I'm not expert so I got the error message.In taxonomy.module:

----------------------------------------------------------------------------------------------
function taxonomy_render_nodes($result) {
$row=array();
if (db_num_rows($result) > 0) {
while ($node = db_fetch_object($result)) {
if((substr($_REQUEST['q'],0,13)=="taxonomy_menu"))
{
$rnew .= node_view(node_load($node->nid), 1);
$row[] = $rnew;
$rows[] = $rnew;
output .= theme('table',$header,$rows);
}
else
{
$output .= node_view(node_load($node->nid), 1);
}
}
$output .= theme('pager', NULL, variable_get('default_nodes_main', 10), 0);
}
else {
$output .= t('There are currently no posts in this category.');
}
return $output;
}
---------------------------------------------------------------------------------------------
I got the error message of :
Parse error: syntax error, unexpected T_CONCAT_EQUAL in D:\AppServ\www\mylocalsite\modules\taxonomy.module on line 1155.
Can anyone help me to modify the code to see in table form?
Thank you so much in advance.