From 206ab949e7fe3036ff65cc70905c3e3f2f5579d0 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 19 Jun 2007 14:34:57 +0000 Subject: [PATCH] declare title temporary variable --- chrome/content/vimperator/bookmarks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/vimperator/bookmarks.js b/chrome/content/vimperator/bookmarks.js index 069b3c50..9d7b329b 100644 --- a/chrome/content/vimperator/bookmarks.js +++ b/chrome/content/vimperator/bookmarks.js @@ -234,7 +234,7 @@ function Bookmarks() return null; str = match_title[match_title.length-1]; // the last captured parenthesis is the rest of the string - title = match_title[3]; + var title = match_title[3]; if(title.charAt(0) == '"') title = title.substring(1,title.length-1); res.title = title;