diff --git a/src/Mind.php b/src/Mind.php index 4699e80..248bfb8 100755 --- a/src/Mind.php +++ b/src/Mind.php @@ -3,7 +3,7 @@ /** * * @package Mind - * @version Release: 5.9.1 + * @version Release: 5.9.2 * @license GPL3 * @author Ali YILMAZ * @category Php Framework, Design pattern builder for PHP. @@ -5296,11 +5296,6 @@ public function get_contents($left, $right, $url, $options=array()){ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); - $cookie_file = tempnam(sys_get_temp_dir(), 'cookie'); - curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); - curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file); - unlink($cookie_file); - if(!empty($options['post'])){ curl_setopt($ch, CURLOPT_POST, true); if(is_array($options['post']) AND !isset($options['attachment'])){