From 5f5cf89c84c7c92f489f02bae41468ab2a63e4db Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Wed, 3 Aug 2011 13:57:47 +0000
Subject: - Check current search value in ksearch_query_results() to prevent
 from wrong regexp replacement when it's empty

---
 program/js/app.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'program/js')

diff --git a/program/js/app.js b/program/js/app.js
index f002dcae3..1c35ad0d9 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3640,8 +3640,12 @@ function rcube_webmail()
 
   this.ksearch_query_results = function(results, search, reqid)
   {
+    // search stopped in meantime?
+    if (!this.ksearch_value)
+      return;
+
     // ignore this outdated search response
-    if (this.ksearch_input && this.ksearch_value && search != this.ksearch_value)
+    if (this.ksearch_input && search != this.ksearch_value)
       return;
 
     // display search results
-- 
cgit v1.2.3