]> git.mxchange.org Git - mailer.git/commitdiff
Fix for empty content
authorRoland Häder <roland@mxchange.org>
Sun, 21 Sep 2008 17:01:51 +0000 (17:01 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 21 Sep 2008 17:01:51 +0000 (17:01 +0000)
inc/databases.php
inc/functions.php

index 6793b0f1d3adcfa7f1c845d353af6edb6e0c9ea4..a441f85285beff0aacc92ac4d5b03185997fa823 100644 (file)
@@ -113,7 +113,7 @@ define('USAGE_BASE', "usage");
 define('SERVER_URL', "http://www.mxchange.org");
 
 // This current patch level
-define('CURR_SVN_REVISION', "381");
+define('CURR_SVN_REVISION', "382");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index 892f983c6b68cf48f9f2efaf2f0ea13bd039c959..c4a1171f000d79c4da5f9fa29ba3a6243ebf7700 100644 (file)
@@ -884,8 +884,10 @@ function LOAD_URL($URL, $addUrlData=true) {
        // Get output buffer
        $OUTPUT = ob_get_contents();
 
-       // Clear it
-       ob_end_clean();
+       // Clear it only if there is content
+       if (!empty($OUTPUT)) {
+               ob_end_clean();
+       } // END - if
 
        // Add some data to URL if cookies are not accepted
        if (((!defined('__COOKIES')) || (!__COOKIES)) && ($addUrlData)) $URL = ADD_URL_DATA($URL);