X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fregister_functions.php;h=f90e1b8d3083313fe27b46d4878a18c6db1102bf;hb=bfe24b8d5abcc23e3330580c3ffbeab93166b29b;hp=7a74af6a32c7fa7ce8ea36740aefe3302fbf1cb6;hpb=dbeb4ef1dc2e59d0c6bfab9d9666cdfa515f58e7;p=mailer.git diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index 7a74af6a32..f90e1b8d30 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__);