After installing flexinode, then going to 'administer'->'modules' the following appears above the header of my page. I never had this issue on my old server but after moving to a new one i get this error after installing flexinode. The server is Fedora Core, mysql 3.23.58, and php 4 and drupal 4.6.1. Any help with this would be greatly appreciated.
'; $output = '
'.$output.'
'; return theme('form_element', $title, $output, $description, 'edit-'. $name, $required, _form_get_error($name)); } function _add_colorpickerjs(){ $js = ' '; drupal_set_html_head($js); return $js; } ?>field_id; if ($node->$fieldname) { $table=$node->$fieldname; $rows=count($table)+1; $cols=count($table[0])+1; } else { $table=array(); $rows=8; $cols=5; } $output = ''; $output .= form_hidden($fieldname.'_rows',$rows); $output .= '
'.t($field->label).':
'; $output .= ''; $title = t($field->label); for ($i = 0; $i < $rows; $i++) { $output .= ''; for ($j = 0; $j < $cols; $j++) { $output .= ''; } $output .= ''; } $output .= '
'; $value = (isset($table[$i]) && isset($table[$i][$j])) ? $table[$i][$j] : ''; $output .= form_textarea('', $fieldname.'_'.$i.'][', $value, 10, 3); $output .= '
'; return $output; } function flexinode_field_table_validate($field, $node) { $fieldname = 'flexinode_'. $field->field_id; if (!isset($_POST['edit'])) { return array('value' => $node->$fieldname); } $rows = $_POST['edit'][$fieldname.'_rows']; $value = array(); $deleted_cols = array(); foreach ($_POST['edit'][$fieldname.'_0'] as $key=>$val) { if (empty($val) && $key) { $deleted_cols[] = $key; } } for ($i = 0; $i <= $rows; $i++) { if ($i && empty($_POST['edit'][$fieldname.'_'.$i][0])) { continue; } $newrow = $_POST['edit'][$fieldname.'_'.$i]; foreach ($deleted_cols as $key) unset($newrow[$key]); $value[] = array_values($newrow); // reindex from 0 } return (array('value' => $value)); } function flexinode_field_table_insert($field, $node) { $fieldname = 'flexinode_'. $field->field_id; db_query("INSERT INTO {flexinode_data} (nid, field_id, serialized_data) VALUES (%d, %d, '%s')", $node->nid, $field->field_id, serialize($node->$fieldname)); } function flexinode_field_table_db_select($field) { $fieldname = 'flexinode_'. $field->field_id; return $fieldname .'.serialized_data AS '. $fieldname; } function flexinode_field_table_load($field, $node) { $fieldname = 'flexinode_'. $field->field_id; if (isset($table_phase)) $table_phase++; else $table_phase=0; return unserialize($node->$fieldname); } function flexinode_field_table_format($field, $node, $brief = 0) { $fieldname = 'flexinode_'. $field->field_id; $table = $node->$fieldname; $output = ""; $i=0; foreach ($table as $row) { $output .= ''; $i=1-$i; } $output .= "