Implement user profiles
Existing installations will have to apply the following SQL: ```sql ALTER TABLE `registrations` ADD `profile_image` VARCHAR( 255 ) NOT NULL , ADD `profile_text` TEXT NOT NULL ```
This commit is contained in:
parent
c6446d6f84
commit
ebe48798fe
8 changed files with 83 additions and 50 deletions
|
|
@ -406,6 +406,11 @@ Callbacks = {
|
|||
}
|
||||
}
|
||||
div.appendTo($("#userlist"));
|
||||
|
||||
if(data.name == uname) {
|
||||
PROFILE.image = data.profile.image;
|
||||
PROFILE.text = data.profile.text;
|
||||
}
|
||||
},
|
||||
|
||||
updateUser: function(data) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue