diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js
index 0e06b650a18afbb405aba6ee6a3dea5780642888..11661320c5901d237f3953eb49f9cac7fd57e776 100644
--- a/apps/contacts/js/contacts.js
+++ b/apps/contacts/js/contacts.js
@@ -1076,7 +1076,7 @@ Contacts={
 				$.post(url, { id: bookid, name: displayname, active: active, description: description },
 					function(jsondata){
 						if(jsondata.status == 'success'){
-							$(button).closest('tr').prev().html(data.page).show().next().remove();
+							$(button).closest('tr').prev().html(jsondata.page).show().next().remove();
 							Contacts.UI.Contacts.update();
 						} else {
 							Contacts.UI.messageBox(t('contacts', 'Error'), jsondata.data.message);