Merge pull request #5281 from owncloud/settings-ie8-changedisplaynamefix
Fixed display name change for IE8
This commit is contained in:
commit
b9bfe31981
|
@ -31,7 +31,7 @@ function changeDisplayName(){
|
||||||
// Ajax foo
|
// Ajax foo
|
||||||
$.post( 'ajax/changedisplayname.php', post, function(data){
|
$.post( 'ajax/changedisplayname.php', post, function(data){
|
||||||
if( data.status === "success" ){
|
if( data.status === "success" ){
|
||||||
$('#oldDisplayName').text($('#displayName').val());
|
$('#oldDisplayName').val($('#displayName').val());
|
||||||
// update displayName on the top right expand button
|
// update displayName on the top right expand button
|
||||||
$('#expandDisplayName').text($('#displayName').val());
|
$('#expandDisplayName').text($('#displayName').val());
|
||||||
updateAvatar();
|
updateAvatar();
|
||||||
|
|
Loading…
Reference in New Issue