Bug Squashing!

Contrast_Picker
Arcidayne 9 years ago
parent 90e17647b4
commit a4801bf303

@ -122,8 +122,15 @@ function noteeditor(str)
local note, note_to, note_subj, note_to_send = false, false, false, false
if str == "new" then
note_to = utils.inputbox("To whom are you writing the note?", "To list", "all")
if note_to then
note_to_send = "note write " .. note_to
else
note_to_send = "note write all"
end
note_subj = utils.inputbox("What is the subject of your note?", "Subject")
if not note_subj then
note_subj = ""
end
elseif str == "reply" then
note_to = utils.inputbox("To which note are you replying?", "Note number")
note_to_send = "note reply " .. note_to or ""

Loading…
Cancel
Save