summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
authorfalmp <[email protected]>2013-11-20 10:46:08 +0000
committerfalmp <[email protected]>2013-11-20 10:46:08 +0000
commit7ed8aacc50ce09c78701a06699ae6c58269b3315 (patch)
tree35f357c7afa2abc9d0ade70d26a01f28ece4fbab /idiorm.php
parent1e81b41c1eba7ec17887826a3504afa0b15947bd (diff)
Removed premature optimization as requested
Diffstat (limited to 'idiorm.php')
-rw-r--r--idiorm.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/idiorm.php b/idiorm.php
index 92d7cad..f628004 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -189,7 +189,7 @@
// Shortcut: If only one array argument is passed,
// assume it's an array of configuration settings
foreach ($key as $conf_key => $conf_value) {
- self::$_config[$connection_name][$conf_key] = $conf_value;
+ self::configure($conf_key, $conf_value, $connection_name);
}
} else {
if (is_null($value)) {