Changeset 950

Show
Ignore:
Timestamp:
2008-04-26 12:58:50 (7 months ago)
Author:
MaierMan
Message:

#702: Bulk url syntax ignored with certain urls
patch provided by pmcleish

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0.x/chrome/content/dta/addurl.js

    r923 r950  
    194194                if ((this._pats[i] instanceof Literal) && (this._pats[i + 1] instanceof Literal)) { 
    195195                        this._pats[i] = new Literal(this._pats[i].str + this._pats[i + 1].str); 
    196                         this._pats = this._pats.slice(i + 1, 1); 
     196                        this._pats.splice(i + 1, 1); 
    197197                } 
    198198        }