use 'fullName' instead of 'fullname'

This commit is contained in:
Uwe Steinmann 2017-02-11 16:32:09 +01:00
parent aa90fdaaf9
commit 290ab91fc7

View File

@ -170,7 +170,7 @@ class SeedDMS_Core_User { /* {{{ */
function setFullName($newFullName) { /* {{{ */
$db = $this->_dms->getDB();
$queryStr = "UPDATE tblUsers SET fullname = ".$db->qstr($newFullName)." WHERE id = " . $this->_id;
$queryStr = "UPDATE tblUsers SET fullName = ".$db->qstr($newFullName)." WHERE id = " . $this->_id;
$res = $db->getResult($queryStr);
if (!$res)
return false;