X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_register2.php;h=2fe8f5bc132fe76839209650cacc0e377167be9b;hp=bf40ec0467114a385096f68b790230bbbf1f41f4;hb=854fcac4ae5fe26e28e9d4d7b8361f2ab455aeb1;hpb=3afdce4fe00b4af570122ce7b8158ced44aec7d3 diff --git a/inc/modules/admin/what-config_register2.php b/inc/modules/admin/what-config_register2.php index bf40ec0467..2fe8f5bc13 100644 --- a/inc/modules/admin/what-config_register2.php +++ b/inc/modules/admin/what-config_register2.php @@ -12,7 +12,7 @@ * -------------------------------------------------------------------- * * Adapted from what-config_reg.php * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,33 +32,31 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); } // Add description as navigation point -ADD_DESCR('admin', __FILE__); +addMenuDescription('admin', __FILE__); if (isFormSent()) { // Calculate timestamp from selections... - REQUEST_SET_POST('ip_timeout', createTimestampFromSelections('ip_timeout', REQUEST_POST_ARRAY())); - REQUEST_SET_POST('least_cats', round(REQUEST_POST('least_cats'))); + setRequestPostElement('ip_timeout', createTimestampFromSelections('ip_timeout', postRequestArray())); + setRequestPostElement('least_cats', round(postRequestElement('least_cats'))); // Save settings - ADMIN_SAVE_SETTINGS_POST(); + adminSaveSettingsFromPostData(); } else { // Remember stuff in constants - define('LEAST_CATS_VALUE' , round(getConfig('least_cats'))); - define('__CFG_SHOW_REFID' , ADD_SELECTION('yn', getConfig('display_refid') , 'display_refid')); - define('__TIMEOUT_SELECTION', createTimeSelections(getConfig('ip_timeout') , 'ip_timeout', 'Dhm')); - define('__CFG_DBL_EMAIL' , ADD_SELECTION('yn', getConfig('check_double_email'), 'check_double_email')); - define('__CFG_DBL_PASS' , ADD_SELECTION('yn', getConfig('check_double_pass') , 'check_double_pass')); - define('__CFG_CAT_DEFAULT' , ADD_SELECTION('yn', getConfig('register_default') , 'register_default')); + $content['display_refid'] = addSelectionBox('yn', getConfig('display_refid') , 'display_refid'); + $content['ip_timeout'] = createTimeSelections(getConfig('ip_timeout') , 'ip_timeout', 'Dhm'); + $content['check_double_email'] = addSelectionBox('yn', getConfig('check_double_email'), 'check_double_email'); + $content['check_double_pass'] = addSelectionBox('yn', getConfig('check_double_pass') , 'check_double_pass'); + $content['register_default'] = addSelectionBox('yn', getConfig('register_default') , 'register_default'); // Load normal template - LOAD_TEMPLATE('admin_config_register2'); + loadTemplate('admin_config_register2', false, $content); } -// +// [EOF] ?>