Guest User

Untitled

a guest
Oct 16th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public function updateUserName($userId, $updateUser)
  2. {
  3.  
  4. $update = craft()->db->createCommand()->update('contest_user', array(
  5. 'name' => $updateUser))->where('id', $userId);
  6.  
  7. return $update;
  8. }
Add Comment
Please, Sign In to add comment