Skip to content
Snippets Groups Projects
Commit 5a0f0d04 authored by deuce's avatar deuce
Browse files

Back out last change... it takes FOREVER to load a group you've never

scanned before.
parent 7ba10d7a
No related branches found
No related tags found
No related merge requests found
......@@ -27,11 +27,7 @@ if(new_stats[msg_number].inherit_new)
<span class="post_date"><?xjs write(strftime("%m/%d/%y @ %I:%M %p",headers[msg_number].when_written_time)) ?></span>
<span class="reply_count"><?xjs write(reply_count[msg_number]) ?></span>
<span class="newest_reply_date"><?xjs if(new_stats[msg_number].newest_reply) write(strftime("%m/%d/%y @ %I:%M %p",new_stats[msg_number].newest_reply)); ?></span>
<div class="message-body" style="display: <?xjs if(new_stats[msg_number].is_new) write('block'); else write('none') ?>" id="message-body-<?xjs write(clean_id(sub_code)+'-'+msg_number) ?>"><?
if(new_stats[msg_number].is_new) {
xjs_load('body.xjs');
}
?></div>
<div class="message-body" style="display: <?xjs if(new_stats[msg_number].is_new) write('block'); else write('none') ?>" id="message-body-<?xjs write(clean_id(sub_code)+'-'+msg_number) ?>"></div>
<div class="replies" style="display: <?xjs if(new_stats[msg_number].inherit_new) write('block'); else write('none'); ?>" id="replies-<?xjs write(clean_id(sub_code)+'-'+msg_number) ?>"><?xjs
/* Some of the replies are new... expand them! */
if(new_stats[msg_number].inherit_new) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment