Browse Source

Simplified code/math.

pull/40/head
Savetheinternet 14 years ago
parent
commit
0b50ef702f
  1. 2
      inc/functions.php

2
inc/functions.php

@ -62,7 +62,7 @@
$res = mysql_query("SELECT COUNT(`id`) as `num` FROM `posts` WHERE `thread` IS NULL", $sql) or error(mysql_error($sql));
$arr = mysql_fetch_array($res);
$count = floor((THREADS_PER_PAGE + $arr['num'] - 1) / (THREADS_PER_PAGE));
$count = floor((THREADS_PER_PAGE + $arr['num'] - 1) / THREADS_PER_PAGE);
$pages = Array();
for($x=0;$x<$count && $x<MAX_PAGES;$x++) {

Loading…
Cancel
Save