Changeset 225
- Timestamp:
- 02/08/07 21:24:35 (2 years ago)
- Files:
-
- bb-ratings/trunk/bb-ratings.php (modified) (1 diff)
- user-timezones (added)
- user-timezones/branches (added)
- user-timezones/tags (added)
- user-timezones/trunk (added)
- user-timezones/trunk/readme.txt (added)
- user-timezones/trunk/user-timezones.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
bb-ratings/trunk/bb-ratings.php
r28 r225 60 60 /* Query Functions */ 61 61 62 function bb_top_topics( ) {62 function bb_top_topics( $number = 0 ) { 63 63 global $bbdb, $page, $bb_last_countable_query; 64 64 65 $limit = bb_get_option('page_topics');65 $limit = $number ? $number : bb_get_option('page_topics'); 66 66 if ( 1 < $page ) 67 67 $limit = ($limit * ($page - 1)) . ", $limit";
