X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_refid.php;h=b6585858dc024be7fb8a59645f8e8701848a8f4f;hb=171923dfbd09758b7cbf58aff40c5a358407061a;hp=90754977711a0d93936e6d30584c4dec9e0513c8;hpb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;p=mailer.git diff --git a/inc/modules/admin/what-config_refid.php b/inc/modules/admin/what-config_refid.php index 9075497771..b6585858dc 100644 --- a/inc/modules/admin/what-config_refid.php +++ b/inc/modules/admin/what-config_refid.php @@ -6,9 +6,9 @@ * -------------------------------------------------------------------- * * File : what-config_refid.php * * -------------------------------------------------------------------- * - * Short description : Setup default referal id * + * Short description : Setup default referral id * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Standart Referal-Id einstellen * + * Kurzbeschreibung : Standard Referral-Id einstellen * * -------------------------------------------------------------------- * * $Revision:: $ * * $Date:: $ * @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,12 +43,12 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { // Add description as navigation point addYouAreHereLink('admin', __FILE__); -if (isFormSent()) { +if (isFormSent('save_config')) { // Save data adminSaveSettingsFromPostData(); } else { // Prepare member selection - $content['form_selection'] = addMemberSelectionBox(getDefRefid(), false, true, true, 'def_refid'); + $content['def_refid'] = addMemberSelectionBox(getDefRefid(), FALSE, TRUE, TRUE, 'def_refid'); // Prepare contants for the template foreach (array('refid_target_index','refid_target_register','select_user_zero_refid_y','select_user_zero_refid_n') as $entry) { @@ -61,7 +61,7 @@ if (isFormSent()) { } // END - foreach // Load template - loadTemplate('admin_config_refid', false, $content); + loadTemplate('admin_config_refid', FALSE, $content); } // [EOF]