alecpl
2011-08-03 5f5cf89c84c7c92f489f02bae41468ab2a63e4db
- Check current search value in ksearch_query_results() to prevent from wrong regexp replacement when it's empty


1 files modified
6 ■■■■ changed files
program/js/app.js 6 ●●●● patch | view | raw | blame | history
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