]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register.php
Missing theme extension fixed in theme_edit/theme_import
[mailer.git] / inc / modules / admin / what-config_register.php
index 06b5cf4d383170b05014bce0893fabfafc683e48..dbc53e62f77efbd1ddbf162a13f7d43c39c8ed72 100644 (file)
@@ -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 .= "<TR>
   <TD align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">".$id."</TD>
   <TD class=\"switch_sw".$SW." bottom2 right2\">&nbsp;&nbsp;".$name."</TD>