diff options
author | dchill42 <dchill42@gmail.com> | 2012-07-30 20:53:11 +0200 |
---|---|---|
committer | dchill42 <dchill42@gmail.com> | 2012-07-30 20:53:11 +0200 |
commit | c58722535e0358367f351c168480ef98a033264c (patch) | |
tree | 1c9de313b982c4e1c7052a2f3ba827af3e40ec64 /system/libraries/Driver.php | |
parent | 77ee3fdac34d317b600a269e0b845588c88fa4c5 (diff) |
Fixed _parent references and several minor bugs
Diffstat (limited to 'system/libraries/Driver.php')
-rw-r--r-- | system/libraries/Driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Driver.php b/system/libraries/Driver.php index 86b233a15..1d084c8e4 100644 --- a/system/libraries/Driver.php +++ b/system/libraries/Driver.php @@ -65,7 +65,7 @@ class CI_Driver_Library { public function __get($child) { // Try to load the driver - return load_driver($child); + return $this->load_driver($child); } /** |