BUGFIX: fixed notice level error with old field name

This commit is contained in:
Will Rossiter 2009-04-19 07:34:30 +00:00
parent e73015e6e5
commit b3a73eac53
2 changed files with 3 additions and 3 deletions

View File

@ -92,9 +92,8 @@ class FieldEditor extends FormField {
$fieldSet = $record->$name(); $fieldSet = $record->$name();
// @todo shouldn't we deal with customFormActions on that object? // @todo shouldn't we deal with customFormActions on that object?
$record->EmailTo = $_REQUEST[$name]['EmailTo'];
$record->EmailOnSubmit = isset( $_REQUEST[$name]['EmailOnSubmit'] ) ? "1" : "0"; $record->EmailOnSubmit = isset( $_REQUEST[$name]['EmailOnSubmit'] ) ? "1" : "0";
$record->SubmitButtonText = $_REQUEST[$name]['SubmitButtonText']; $record->SubmitButtonText = isset($_REQUEST[$name]['SubmitButtonText']) ? $_REQUEST[$name]['SubmitButtonText'] : "";
$record->ShowClearButton = isset($_REQUEST[$name]['ShowClearButton']) ? "1" : "0"; $record->ShowClearButton = isset($_REQUEST[$name]['ShowClearButton']) ? "1" : "0";
// store the field IDs and delete the missing fields // store the field IDs and delete the missing fields

View File

@ -91,7 +91,8 @@ div.FieldEditor ul a:hover {
#Fields_fields { #Fields_fields {
padding: 10px 0; padding: 10px 0;
} }
.fieldHandler { .fieldHandler,
.handle {
cursor: pointer; cursor: pointer;
} }
.EditableFormField { .EditableFormField {