Changeset 225

Show
Ignore:
Timestamp:
02/08/07 21:24:35 (2 years ago)
Author:
mdawaffe
Message:

initial pop of user-timezones

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bb-ratings/trunk/bb-ratings.php

    r28 r225  
    6060/* Query Functions */ 
    6161 
    62 function bb_top_topics() { 
     62function bb_top_topics( $number = 0 ) { 
    6363        global $bbdb, $page, $bb_last_countable_query; 
    6464 
    65         $limit = bb_get_option('page_topics'); 
     65        $limit = $number ? $number : bb_get_option('page_topics'); 
    6666        if ( 1 < $page ) 
    6767                $limit = ($limit * ($page - 1)) . ", $limit";