]> git.mxchange.org Git - mailer.git/commitdiff
Sometimes a whole array needs to be set in session (installer).
authorRoland Haeder <roland@mxchange.org>
Fri, 3 Apr 2015 19:42:18 +0000 (21:42 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 3 Apr 2015 19:42:18 +0000 (21:42 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/ajax-functions.php
inc/session-functions.php
inc/template-functions.php
inc/wrapper-functions.php

index 90e48a1a023669253d21f4606865a5ce905ae23f..39c65bd5fb497a0f51c93bc5021f40d80051e44f 100644 (file)
@@ -66,6 +66,7 @@ function initAjax () {
 function setAjaxReplyContent ($content) {
        // Log message
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'content()=' . strlen($content));
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'content[]=' . gettype($content));
 
        // Set it, but with URL encoding
        $GLOBALS['ajax_reply']['reply_content'] = urlencode(doFinalCompilation($content, FALSE));
index 8feefa3302c17793a901c93630028fd90add42fb..dd78b81d4fbf49b94541fd0c44c29906d6daf431 100644 (file)
@@ -45,10 +45,15 @@ function setSession ($var, $value) {
 
        // Trim value and session variable
        $var   = trim(secureString($var));
-       $value = trim($value);
+
+       // Is the value no array?
+       if (!is_array($value)) {
+               // Then trim it
+               $value = trim($value);
+       } // END - if
 
        // Is the session variable set?
-       if (('' . $value . '' == '') && (isSessionVariableSet($var))) {
+       if ((!is_array($value)) && ('' . $value . '' == '') && (isSessionVariableSet($var))) {
                // Remove the session
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'UNSET:' . $var . '=' . getSession($var));
                unset($_SESSION[$var]);
@@ -59,7 +64,7 @@ function setSession ($var, $value) {
                        // PHP version < 5.3.0
                        return session_unregister($var);
                }
-       } elseif (('' . $value . '' != '') && (!isSessionVariableSet($var))) {
+       } elseif ((is_array($value)) || (('' . $value . '' != '') && (!isSessionVariableSet($var)))) {
                // Set session
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SET:' . $var . '=' . $value);
                $_SESSION[$var] = $value;
index caa72894e601397b79899555565c2e7778104e3e..0526f1b40bea0edef2a0b8656d56eb10e54d64cf 100644 (file)
@@ -226,6 +226,9 @@ function compileFinalOutput () {
 
 // Main compilation loop
 function doFinalCompilation ($code, $insertComments = TRUE, $enableCodes = TRUE) {
+       // Code must not be an array (happens in installer)
+       assert(!is_array($code));
+
        // Insert comments? (Only valid with HTML templates, of course)
        enableTemplateHtml($insertComments);
 
@@ -240,6 +243,7 @@ function doFinalCompilation ($code, $insertComments = TRUE, $enableCodes = TRUE)
 
                // Compile it
                //* DEBUG: */ debugOutput('<pre>'.lineNumberCode($code).'</pre>');
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'code[]=' . gettype($code) . ',enableCodes[]=' . gettype($enableCodes));
                $eval = '$newContent = "' . str_replace('{DQUOTE}', '"', compileCode(escapeQuotes($code), $enableCodes)) . '";';
                //* DEBUG: */ if (!$insertComments) print('EVAL=<pre>'.lineNumberCode($eval).'</pre>');
                eval($eval);
index a2056a92461246f82e8a23530f7eada900468315..002159c42ae160008726177b5b6e4d396ba2054f 100644 (file)
@@ -3572,8 +3572,14 @@ function getGenericHashFileName () {
 
 // "Compiles" the given value and sets it in given key
 function setSessionCompiled ($key, $value) {
-       // "Compile" the value
-       $value = doFinalCompilation(compileRawCode($value));
+       // Debug message
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key[]=' . gettype($key) . ',value[]=' . gettype($value));
+
+       // Is the value not an array?
+       if (!is_array($value)) {
+               // "Compile" the value
+               $value = doFinalCompilation(compileRawCode($value));
+       } // END - if
 
        // And set it
        return setSession($key, $value);