summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-05-27 21:28:18 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-05-27 21:28:18 +0200
commitda33cb5df443c41dce75cdf756ea4c3234b510fb (patch)
tree1eefba59a3c9f270dc3f74e53659097266f46543 /system
parent0bf4e88d935e972fc432b8c3cdaeb5397749b580 (diff)
Driver_Library had $lib_name set as static, and used non-static
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Driver.php b/system/libraries/Driver.php
index 9881c1eec..a199d45f0 100644
--- a/system/libraries/Driver.php
+++ b/system/libraries/Driver.php
@@ -30,7 +30,7 @@
class CI_Driver_Library {
protected $valid_drivers = array();
- protected static $lib_name;
+ protected $lib_name;
// The first time a child is used it won't exist, so we instantiate it
// subsequents calls will go straight to the proper child.