X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_register.php;h=dbc53e62f77efbd1ddbf162a13f7d43c39c8ed72;hb=b7a1b50bec9d45efcf037db83b7e7c58ba2846dd;hp=06b5cf4d383170b05014bce0893fabfafc683e48;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/modules/admin/what-config_register.php b/inc/modules/admin/what-config_register.php index 06b5cf4d38..dbc53e62f7 100644 --- a/inc/modules/admin/what-config_register.php +++ b/inc/modules/admin/what-config_register.php @@ -38,7 +38,7 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); // Do we want to save changes? if (isset($_POST['ok'])) { @@ -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."