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

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

diff --git a/program/js/app.js b/program/js/app.js
index f002dca..1c35ad0 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3640,8 +3640,12 @@
 
   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

--
Gitblit v1.9.1