]> git.mxchange.org Git - mailer.git/blobdiff - inc/functions.php
Fix for non-string settings
[mailer.git] / inc / functions.php
index b6b212fb72ba2764fe1d9da321d660103f5b5bf2..e792e79ddfd553a93e4a3594ddac1be6416d918a 100644 (file)
@@ -914,11 +914,8 @@ function COMPILE_CODE($code, $simple = false, $constants = true, $full = true) {
        global $SEC_CHARS, $URL_CHARS;
        // Is the code a string?
        if (!is_string($code)) {
-               // Abort here with backtrace
-               DEBUG_LOG(__FUNCTION__.": code is not string!");
-               print "<pre>";
-               debug_print_backtrace();
-               die("</pre>");
+               // Silently return it
+               return $code;
        } // END - if
 
        $ARRAY = $SEC_CHARS;