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;