Fix for ExpressionEngine File Extension in PHP4
Find the following line (around 5388):
before that place this line:
So that switch should look like this:
http://expressionengine.com/forums/viewthread/38843/#181791
switch ($row['field_type'])
before that place this line:
$field_type = "";
So that switch should look like this:
$field_type = ""; switch ($row['field_type']) { case 'text' : $field_type = $LANG->line('text_input'); break; case 'textarea' : $field_type = $LANG->line('textarea'); break; case 'select' : $field_type = $LANG->line('select_list'); break; case 'date' : $field_type = $LANG->line('date_field'); break; case 'rel' : $field_type = $LANG->line('relationship'); break; }
http://expressionengine.com/forums/viewthread/38843/#181791