summaryrefslogtreecommitdiffstats
path: root/system/libraries/Model.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-31 08:11:36 +0100
committeradmin <devnull@localhost>2006-10-31 08:11:36 +0100
commit57b9e5c5350ffb20048d36c508d1e310603b12f8 (patch)
tree780262d522d6405262057ce6ea1167d6d181cc5e /system/libraries/Model.php
parenta2b1209e882a35ae64ac2227da83b145ea42c1ff (diff)
Diffstat (limited to 'system/libraries/Model.php')
-rw-r--r--system/libraries/Model.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/system/libraries/Model.php b/system/libraries/Model.php
index 1c2b7afce..6f4f7e7ef 100644
--- a/system/libraries/Model.php
+++ b/system/libraries/Model.php
@@ -40,12 +40,7 @@ class Model {
// We don't want to assign the model object to itself when using the
// assign_libraries function below so we'll grab the name of the model parent
- $methods = get_class_methods($this);
-
- if (isset($methods[0]))
- {
- $this->_parent_name = $methods[0];
- }
+ $this->_parent_name = ucfirst(get_class($this));
log_message('debug', "Model Class Initialized");
}
@@ -65,7 +60,7 @@ class Model {
foreach (array_keys(get_object_vars($CI)) as $key)
{
if ( ! isset($this->$key) AND $key != $this->_parent_name)
- {
+ {
// In some cases using references can cause
// problems so we'll conditionally use them
if ($use_reference == TRUE)