X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_register.php;h=dbc53e62f77efbd1ddbf162a13f7d43c39c8ed72;hb=2142149f3f72f1a2476f95a87937c044d63bbaf2;hp=f4b0a39b97d39ecb3687fabf074559101fe6190f;hpb=97dbb1a1f2f9e582132bb81c12895503e78e7a59;p=mailer.git diff --git a/inc/modules/admin/what-config_register.php b/inc/modules/admin/what-config_register.php index f4b0a39b97..dbc53e62f7 100644 --- a/inc/modules/admin/what-config_register.php +++ b/inc/modules/admin/what-config_register.php @@ -53,8 +53,9 @@ if (isset($_POST['ok'])) { $result = SQL_QUERY("SELECT id, field_name, field_required FROM "._MYSQL_PREFIX."_must_register ORDER BY id", __FILE__, __LINE__); $SW = 2; $OUT = ""; while (list($id, $name, $required) = SQL_FETCHROW($result)) { - $eval = "\$name = ".strtoupper($name).";"; - eval($eval); + // Get constant value + $name = constant(strtoupper($name)); + $OUT .= " ".$id."   ".$name."