| Index: chrome/content/ui/composer.js |
| =================================================================== |
| --- a/chrome/content/ui/composer.js |
| +++ b/chrome/content/ui/composer.js |
| @@ -46,16 +46,17 @@ function init() |
| try |
| { |
| let suggestions = [""]; |
| let url = ioService.newURI(item.location, null, null) |
| .QueryInterface(Ci.nsIURL); |
| let suffix = (url.query ? "?*" : ""); |
| url.query = ""; |
| + url.ref = ""; |
| suggestions[1] = addSuggestion(url.spec + suffix); |
| let parentURL = ioService.newURI(url.fileName == "" ? ".." : ".", null, url); |
| if (!parentURL.equals(url)) |
| suggestions[2] = addSuggestion(parentURL.spec + "*"); |
| else |
| suggestions[2] = suggestions[1]; |