Show
Ignore:
Timestamp:
12/07/2007 03:04:05 PM (12 months ago)
Author:
Geert
Message:
  • Added uri->rsegment_array(), uri->total_rsegments() and uri->last_rsegment()
  • Synced i18n/nl_NL
  • Some other minor changes
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/Payment.php

    r1297 r1449  
    1717                'driver'      => NULL, 
    1818                // 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                ), 
    2325                // Test mode is set to true by default 
    2426                'test_mode'   => TRUE, 
     
    6971                        $config = Config::item('payment.default'); 
    7072                } 
    71                 else if (is_string($config)) 
     73                elseif (is_string($config)) 
    7274                { 
    7375                        $this->config['driver'] = $config;