mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
use 'fullName' instead of 'fullname'
This commit is contained in:
parent
aa90fdaaf9
commit
290ab91fc7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user