From b155682d575dad71f35bd8c1c1d27467c9caa1e2 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 05 Feb 2008 18:24:30 -0500
Subject: [PATCH] Also send search request when deleting a contact (#1484620)

---
 program/js/app.js |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index 66b7de0..6504bca 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -2378,6 +2378,7 @@
       return;
       
     var a_cids = new Array();
+    var qs = '';
 
     if (this.env.cid)
       a_cids[a_cids.length] = this.env.cid;
@@ -2396,8 +2397,12 @@
         this.show_contentframe(false);
       }
 
+    // also send search request to get the right records from the next page
+    if (this.env.search_request) 
+      qs += '&_search='+this.env.search_request;
+
     // send request to server
-    this.http_post('delete', '_cid='+urlencode(a_cids.join(','))+'&_from='+(this.env.action ? this.env.action : ''));
+    this.http_post('delete', '_cid='+urlencode(a_cids.join(','))+'&_from='+(this.env.action ? this.env.action : '')+qs);
     return true;
     };
 

--
Gitblit v1.9.1