Fix image limit count.

This commit is contained in:
Nicolas Stepien 2011-05-23 23:50:32 +02:00
parent 37faaea73f
commit f94008ce02
2 changed files with 2 additions and 2 deletions

View File

@ -1987,7 +1987,7 @@
threadStats.replies++;
if ($('img[md5]', root)) {
threadStats.images++;
if (threadStats.images > 151) {
if (threadStats.images > 150) {
$('#icount').className = 'error';
}
}

View File

@ -1557,7 +1557,7 @@ threadStats =
threadStats.replies++
if $ 'img[md5]', root
threadStats.images++
if threadStats.images > 151
if threadStats.images > 150
$('#icount').className = 'error'
$('#rcount').textContent = threadStats.replies
$('#icount').textContent = threadStats.images