X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fregister_functions.php;h=7630933ab70f1f91c449a15f931e4db573fb3f21;hp=aa0ea1baf50f15528a477b178c3964e9b959cfb1;hb=a090e351c49fe021fb3064325694da03402332e0;hpb=f212df3d9d1d3c7f8632040130be9e7160980de6 diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index aa0ea1baf5..7630933ab7 100644 --- a/inc/libs/register_functions.php +++ b/inc/libs/register_functions.php @@ -48,8 +48,8 @@ function REGISTER_FILL_MUST_CONSTANTS () { __FUNCTION__, __LINE__); while ($content = SQL_FETCHARRAY($result)) { - $value = ""; - if ($content['field_required'] == "Y") $value = "
 (*)
"; + $value = ''; + if ($content['field_required'] == 'Y') $value = "
 (*)
"; // @TODO Rewrite these constants $eval = "define('MUST_".strtoupper($content['field_name'])."', \"".$value."\");"; eval($eval); @@ -78,8 +78,8 @@ function REGISTER_CHECK_REQUIRED_FIELDS (&$array) { // Check if extension country is not found (you have to enter the 2-chars long country code) or // if extensions is present check if country code was selected // 01 2 21 12 3 32 234 5 54 4 43 34 4 4 5 5432 2 3 3210 - $country = ((!EXT_IS_ACTIVE("country")) || ((EXT_IS_ACTIVE("country")) && (((empty($value)) && ($key == "cntry")) || (($key == "country_code") && (!empty($value)))) && (!empty($array['country_code'])))); - if ((empty($value)) && ($chk == "Y") && (!$country)) + $country = ((!EXT_IS_ACTIVE('country')) || ((EXT_IS_ACTIVE('country')) && (((empty($value)) && ($key == "cntry")) || (($key == "country_code") && (!empty($value)))) && (!empty($array['country_code'])))); + if ((empty($value)) && ($chk == 'Y') && (!$country)) { // Required field not set $array[$key] = "!"; @@ -97,9 +97,9 @@ function REGISTER_CHECK_REQUIRED_FIELDS (&$array) { function REGISTER_OUTPUT_REQUIRE_CHECK (&$array) { $result = SQL_QUERY("SELECT field_name, field_required FROM `{!_MYSQL_PREFIX!}_must_register` ORDER BY `id`", __FUNCTION__, __LINE__); while ($content = SQL_FETCHARRAY($result)) { - if (($array[$content['field_name']] == "!") && ($content['field_required'] == "Y")) { + if (($array[$content['field_name']] == "!") && ($content['field_required'] == 'Y')) { // Empty entry found - $array[$content['field_name']] = ""; + $array[$content['field_name']] = ''; $OUT = constant('REGISTER_'.strtoupper($content['field_name']).'_REQUIRED'); OUTPUT_HTML("
".$OUT."
"); } // END - if @@ -111,14 +111,14 @@ function REGISTER_OUTPUT_REQUIRE_CHECK (&$array) { // function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) { - $OUT = ""; + $OUT = ''; // Guests are mostly not interested in how many members has // choosen an individual category $AND = "WHERE `visible`='Y' "; // Admins are allowed to see every category... - if (IS_ADMIN()) $AND = ""; + if (IS_ADMIN()) $AND = ''; // Look for categories $result = SQL_QUERY("SELECT id, cat, visible FROM `{!_MYSQL_PREFIX!}_cats` ".$AND." ORDER BY `sort`", @@ -132,7 +132,7 @@ function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) { // Is the array element not set? if (!REQUEST_ISSET_POST('cat', $content['id'])) { // Then set it - REQUEST_SET_POST(array('cat', $content['id']), ""); + REQUEST_SET_POST(array('cat', $content['id']), ''); } // END - if // Prepare array for the template @@ -144,10 +144,10 @@ function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) { 'id' => $content['id'], ); - if ((REQUEST_POST('cat', $content['id']) == "Y") || ((getConfig('register_default') == "Y") && (!REQUEST_ISSET_POST('cat', $content['id'])))) { - $content['def_y'] = " checked=\"checked\""; + if ((REQUEST_POST('cat', $content['id']) == 'Y') || ((getConfig('register_default') == 'Y') && (!REQUEST_ISSET_POST('cat', $content['id'])))) { + $content['def_y'] = ' chkecked="checked"'; } else { - $content['def_n'] = " checked=\"checked\""; + $content['def_n'] = ' chkecked="checked"'; } // Load template and switch color @@ -160,7 +160,7 @@ function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) { SQL_FREERESULT($result); } else { // No categories setted up so far... - $OUT .= LOAD_TEMPLATE("admin_settings_saved", true, getMessage('NO_CATEGORIES_VISIBLE')); + $OUT .= LOAD_TEMPLATE('admin_settings_saved', true, getMessage('NO_CATEGORIES_VISIBLE')); } if ($return === true) {