mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 21:51:32 +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) { /* {{{ */
|
function setFullName($newFullName) { /* {{{ */
|
||||||
$db = $this->_dms->getDB();
|
$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);
|
$res = $db->getResult($queryStr);
|
||||||
if (!$res)
|
if (!$res)
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user