aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mekanisti.fi>2009-10-26 14:34:37 +0200
committerFilipp Lepalaan <filipp@mekanisti.fi>2009-10-26 14:34:37 +0200
commit56ae4ac94b1775bb58c63b5ed83bead4369dcdd1 (patch)
tree1d26dd9988ed11259e7d25e51f26184c986a80ac
parent08cba850d34f1e3692ec2aa9ff051fdeabe47b7f (diff)
downloadmain-56ae4ac94b1775bb58c63b5ed83bead4369dcdd1.tar.gz
main-56ae4ac94b1775bb58c63b5ed83bead4369dcdd1.tar.bz2
main-56ae4ac94b1775bb58c63b5ed83bead4369dcdd1.zip
Changes
-rw-r--r--App.php2
-rw-r--r--Db.php9
2 files changed, 8 insertions, 3 deletions
diff --git a/App.php b/App.php
index 89dda01..d7ae2e9 100644
--- a/App.php
+++ b/App.php
@@ -18,8 +18,6 @@ class App
if (empty($param)) {
$action = "index";
}
-
-// $conf['basedir'] = dirname(dirname(__FILE__) . "/system");
if (!$controller) {
$controller = "user";
diff --git a/Db.php b/Db.php
index 2ce5ff0..c98d1cb 100644
--- a/Db.php
+++ b/Db.php
@@ -90,7 +90,14 @@ class Db
$data['id'] = self::getInstance()->lastInsertId();
}
- return $data;
+ // Always strip ":" prefixes from input array keys
+ $out = array();
+ foreach ($data as $k => $v) {
+ $key = ltrim($k, ':');
+ $out[$key] = $v;
+ }
+
+ return $out;
}