From 494a6c9478a322006fa2b42b7081da7c95eacbd7 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 11 Jun 2009 02:23:34 +1000 Subject: [PATCH] Fix listing of contacts with :contacts. --- muttator/content/addressbook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/muttator/content/addressbook.js b/muttator/content/addressbook.js index 0337e194..696e2dac 100644 --- a/muttator/content/addressbook.js +++ b/muttator/content/addressbook.js @@ -202,7 +202,7 @@ function Addressbook() //{{{ } else { - let list = ":" + util.escapeHTML(commandline.getCommand()) + "
" + + let list = ":" + util.escapeHTML(commandline.command) + "
" + ""; for (let i = 0; i < addresses.length; i++) {
NameAddress