Index: branches/unlabeled/unlabeled-1.34.2/core/kernel/globals.php =================================================================== diff -u -r8214 -r8254 --- branches/unlabeled/unlabeled-1.34.2/core/kernel/globals.php (.../globals.php) (revision 8214) +++ branches/unlabeled/unlabeled-1.34.2/core/kernel/globals.php (.../globals.php) (revision 8254) @@ -335,6 +335,9 @@ curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); } + elseif ($request_type == 'GET' && isset($post) && strlen($post) > 0) { + curl_setopt($ch, CURLOPT_URL, preg_match('/\?/', $url) ? $url.'&'.$post : $url.'?'.$post); + } curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);