Plugin Directory

Changeset 1695052


Ignore:
Timestamp:
07/12/2017 09:30:23 AM (8 years ago)
Author:
instamojo
Message:

Fixed a small issue in curl.php

Location:
woo-instamojo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woo-instamojo/tags/1.0.7/lib/curl.php

    r1694512 r1695052  
    124124        }
    125125
    126           $info = curl_getinfo($this->ch);
    127           $this->responseCode = info['http_code'];
     126        $info = curl_getinfo($this->ch);
     127        $this->responseCode = $info['http_code'];
    128128         
    129129
  • woo-instamojo/trunk/lib/curl.php

    r1694499 r1695052  
    124124        }
    125125
    126           $info = curl_getinfo($this->ch);
    127           $this->responseCode = info['http_code'];
     126        $info = curl_getinfo($this->ch);
     127        $this->responseCode = $info['http_code'];
    128128         
    129129
Note: See TracChangeset for help on using the changeset viewer.