Changeset 1449 for trunk/system/libraries/Payment.php
- Timestamp:
- 12/07/2007 03:04:05 PM (12 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Payment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Payment.php
r1297 r1449 17 17 'driver' => NULL, 18 18 // Curl config, see http://us.php.net/manual/en/function.curl-setopt.php for details 19 'curl_config' => array(CURLOPT_HEADER => FALSE, 20 CURLOPT_RETURNTRANSFER => TRUE, 21 CURLOPT_SSL_VERIFYPEER => FALSE 22 ), 19 'curl_config' => array 20 ( 21 CURLOPT_HEADER => FALSE, 22 CURLOPT_RETURNTRANSFER => TRUE, 23 CURLOPT_SSL_VERIFYPEER => FALSE 24 ), 23 25 // Test mode is set to true by default 24 26 'test_mode' => TRUE, … … 69 71 $config = Config::item('payment.default'); 70 72 } 71 else if (is_string($config))73 elseif (is_string($config)) 72 74 { 73 75 $this->config['driver'] = $config;
