summaryrefslogtreecommitdiffstats
path: root/application/models
diff options
context:
space:
mode:
authorSimon2011-04-25 13:48:57 +0200
committerSimon2011-04-25 13:48:57 +0200
commit44706d9b06bd2ea3dfbdeb7a9dedce6c62993e65 (patch)
tree3365419d99b00b434bc7e421b6043b0fc93f4e82 /application/models
parentFehlermeldungen in GroupsGroupsMapper korrigiert (diff)
parentupload data fix (diff)
downloadpbs2-44706d9b06bd2ea3dfbdeb7a9dedce6c62993e65.tar.gz
pbs2-44706d9b06bd2ea3dfbdeb7a9dedce6c62993e65.tar.xz
pbs2-44706d9b06bd2ea3dfbdeb7a9dedce6c62993e65.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/models')
-rw-r--r--application/models/BootOsUserMapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/models/BootOsUserMapper.php b/application/models/BootOsUserMapper.php
index a50fd02..f93cd3f 100644
--- a/application/models/BootOsUserMapper.php
+++ b/application/models/BootOsUserMapper.php
@@ -88,7 +88,7 @@ class Application_Model_BootOsUserMapper
unset($data['bootosuserID']);
return $this->getDbTable()->insert($data);
} else {
- $this->getDbTable()->update($data, array('bootosID = ?' => $id));
+ $this->getDbTable()->update($data, array('bootosuserID = ?' => $id));
}
}