Index: admin/field.php =================================================================== --- admin/field.php (revision 750) +++ admin/field.php (working copy) @@ -11,6 +11,7 @@ \*=====================================================================*/ require_once('./global.php'); +require_once('./includes/functions_datastore.php'); if (!can_perform('canadminfields')) { @@ -45,6 +46,8 @@ $db->query("ALTER TABLE " . TABLE_PREFIX . "bugvaluefill DROP field$field[fieldid]"); $db->query("OPTIMIZE TABLE " . TABLE_PREFIX . "bugvaluefill"); + build_user_help(); + $admin->redirect('field.php?do=modify'); } @@ -166,6 +169,8 @@ VALUES (" . implode("),\n\t\t\t(", $values) . ")" ); + + build_user_help(); $admin->redirect('field.php?do=modify', ($add ? $lang->string('The custom field has been added') : $lang->string('The custom field has been updated'))); }