.
# --------------------------------------------------------
# $Id: manage_custom_field_edit_page.php,v 1.26.2.1 2007-10-13 22:33:28 giallu Exp $
# --------------------------------------------------------
require_once( 'core.php' );
$t_core_path = config_get( 'core_path' );
require_once( $t_core_path.'custom_field_api.php' );
auth_reauthenticate();
access_ensure_global_level( config_get( 'manage_custom_fields_threshold' ) );
$f_field_id = gpc_get_int( 'field_id' );
$f_return = strip_tags( gpc_get_string( 'return', 'manage_custom_field_page.php' ) );
custom_field_ensure_exists( $f_field_id );
html_page_top1();
html_page_top2();
print_manage_menu( 'manage_custom_field_edit_page.php' );
$t_definition = custom_field_get_definition( $f_field_id );
?>