Changeset 1773 for trunk/system/libraries/Payment.php
- Timestamp:
- 01/21/2008 10:56:43 AM (12 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Payment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Payment.php
r1772 r1773 83 83 $driver = 'Payment_'.ucfirst(strtolower($this->config['driver'])).'_Driver'; 84 84 85 // Manually autoload so that exceptions can be caught86 Kohana::auto_load($driver);85 // Manually load so that exceptions can be caught 86 require_once Kohana::find_file('libraries/drivers', substr($driver, 0, -7), TRUE); 87 87 } 88 88 catch (Kohana_Exception $e)
