Skip to content

Commit

Permalink
english standardization
Browse files Browse the repository at this point in the history
  • Loading branch information
grandoc committed Feb 23, 2013
1 parent 869a014 commit 15f8b58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions htdocs/install/mysql/migration/3.3.0-3.4.0.sql
Expand Up @@ -50,6 +50,7 @@ alter table llx_don CHANGE COLUMN ville town text;
alter table llx_adherent CHANGE COLUMN adresse address text;
alter table llx_adherent CHANGE COLUMN nom lastname text;
alter table llx_adherent CHANGE COLUMN ville town text;
alter table llx_user CHANGE COLUMN name lastname text;
alter table llx_entrepot CHANGE COLUMN ville town text;
alter table llx_societe CHANGE COLUMN ville town text;
alter table llx_socpeople CHANGE COLUMN ville town text;
Expand Down
2 changes: 1 addition & 1 deletion htdocs/user/class/user.class.php
Expand Up @@ -1120,7 +1120,7 @@ function update($user,$notrigger=0,$nosyncmember=0,$nosyncmemberpass=0)

// Mise a jour autres infos
$sql = "UPDATE ".MAIN_DB_PREFIX."user SET";
$sql.= " name = '".$this->db->escape($this->lastname)."'";
$sql.= " lastname = '".$this->db->escape($this->lastname)."'";
$sql.= ", firstname = '".$this->db->escape($this->firstname)."'";
$sql.= ", login = '".$this->db->escape($this->login)."'";
$sql.= ", admin = ".$this->admin;
Expand Down

0 comments on commit 15f8b58

Please sign in to comment.