diff options
Diffstat (limited to 'application/models/BootMenuMapper.php')
| -rw-r--r-- | application/models/BootMenuMapper.php | 2 |
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)); } |
