adjust case
[citadel.git] / webcit / static / t / edit / markdown_epic.html
index 19c8dc2844b38b1ffa791974bc738240d5b46598..d1cc5cfc4d60a6b1bbd911876b771d7d278c9e7b 100644 (file)
        function show_attachments_form() {
                $('attachments_form').style.display = 'block';
 
-               p = 'template=edit_message_attachments_pane&r=' + CtdlRandomString();
+               p = 'template=edit_message_attachments_pane&r=' + ctdlRandomString();
                new Ajax.Updater(
                        'attachments_form',
                        'do_template',
        }
 
        function update_attachment_count() {
-               p = 'r=' + CtdlRandomString();
+               p = 'r=' + ctdlRandomString();
                new Ajax.Updater(
                        'num_attachments',
                        'show_num_attachments',
        }
 
        function remove_attachment(which_one) {
-               p = 'which_attachment=' + which_one + '&r=' + CtdlRandomString();
+               p = 'which_attachment=' + which_one + '&r=' + ctdlRandomString();
                new Ajax.Updater(
                        'gonna_upload_this',
                        'remove_attachment',