From: Art Cancro Date: Fri, 1 Sep 2006 18:53:57 +0000 (+0000) Subject: Found the cause of Bug #173 and added a comment to the X-Git-Tag: v7.86~3956 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=a26a77cd3fd30ad95721e58de948218cbd79a287;p=citadel.git Found the cause of Bug #173 and added a comment to the code showing where to fix it. (I don't have the time right now to fix it but will do this later.) --- diff --git a/webcit/static/wclib.js b/webcit/static/wclib.js index 23999c756..5a536b396 100644 --- a/webcit/static/wclib.js +++ b/webcit/static/wclib.js @@ -154,6 +154,8 @@ function CtdlSingleClickMsg(evt, msgnum) { if ( (evt.ctrlKey) && (already_selected == 1) ) { $('m'+msgnum).style.backgroundColor = '#fff'; $('m'+msgnum).style.color = '#000'; + // FIXME pull the message out of the selected list here, stupid. + // this will fix Bugzilla #173 } else { $('m'+msgnum).style.backgroundColor='#69aaff';