summaryrefslogtreecommitdiffstats
path: root/application/models/BootMenuMapper.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/BootMenuMapper.php')
-rw-r--r--application/models/BootMenuMapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/models/BootMenuMapper.php b/application/models/BootMenuMapper.php
index 1730181..1717cf6 100644
--- a/application/models/BootMenuMapper.php
+++ b/application/models/BootMenuMapper.php
@@ -78,7 +78,7 @@ class Application_Model_BootMenuMapper
if (null === ($id = $botmenu->getID()) ) {
unset($data['bootmenuID']);
- $this->getDbTable()->insert($data);
+ return $this->getDbTable()->insert($data);
} else {
$this->getDbTable()->update($data, array('bootmenuID = ?' => $id));
}