X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fregister_functions.php;h=93623b45eab5876e9b559c2125fd7b0b2c54e3c5;hb=3375ab36b02f87009fe814b5b55d5c4da06f8f30;hp=7a74af6a32c7fa7ce8ea36740aefe3302fbf1cb6;hpb=dbeb4ef1dc2e59d0c6bfab9d9666cdfa515f58e7;p=mailer.git diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index 7a74af6a32..93623b45ea 100644 --- a/inc/libs/register_functions.php +++ b/inc/libs/register_functions.php @@ -41,13 +41,12 @@ if (!defined('__SECURITY')) { function REGISTER_FILL_MUST_CONSTANTS() { $result = SQL_QUERY("SELECT field_name, field_required FROM "._MYSQL_PREFIX."_must_register ORDER BY id", __FILE__, __LINE__); - while(list($name, $required) = SQL_FETCHROW($result)) - { + while(list($name, $required) = SQL_FETCHROW($result)) { $value = ""; if ($required == "Y") $value = " (*)"; $eval = "define('MUST_".strtoupper($name)."', \"".$value."\");"; eval($eval); - } + } // END - while // Free memory SQL_FREERESULT($result); @@ -91,12 +90,10 @@ function REGISTER_OUTPUT_REQUIRE_CHECK(&$array) $result = SQL_QUERY("SELECT field_name, field_required FROM "._MYSQL_PREFIX."_must_register ORDER BY id", __FILE__, __LINE__); while(list($name, $required) = SQL_FETCHROW($result)) { - if (($array[$name] == "!") && ($required == "Y")) - { + if (($array[$name] == "!") && ($required == "Y")) { // Empty entry found $array[$name] = ""; - $eval = "\$OUT = REGISTER_".strtoupper($name)."_REQUIRED;"; - eval($eval); + $OUT = constant('REGISTER_'.strtoupper($name).'_REQUIRED'); OUTPUT_HTML("".$OUT."

"); } } @@ -113,6 +110,7 @@ function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) // 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 = ""; $result = SQL_QUERY("SELECT id, cat, visible FROM "._MYSQL_PREFIX."_cats ".$AND." ORDER BY sort", __FILE__, __LINE__); @@ -133,7 +131,7 @@ function REGISTER_ADD_CATEGORY_TABLE ($MODE, $return=false) 'id' => $id, ); - if (($_POST['cat'][$id] == "Y") || (($_CONFIG['register_default'] == "Y") && (empty($_POST['cat'][$id])))) { + if (($_POST['cat'][$id] == "Y") || ((getConfig('register_default') == "Y") && (empty($_POST['cat'][$id])))) { $content['def_y'] = " checked=\"checked\""; } else { $content['def_n'] = " checked=\"checked\"";