MoLew wrote: @ Web Medic: Would love to see how you integrate your existing work with this set.
What?
MoLew wrote: @ Web Medic: Would love to see how you integrate your existing work with this set.
traverlaw.com wrote:MoLew wrote:@ Web Medic: Would love to see how you integrate your existing work with this set.
What?
Code: Select all
if ( $topics_only == 1 )
{
$sql_topics_only_where = 'AND p.post_id = t.topic_first_post_id';
}
Code: Select all
// Return only specific topics. 2 = Ammouncements, 1 = Stickies, 0 = Normal
if ( isset($HTTP_GET_VARS['tt']) && ($HTTP_GET_VARS['tt'] == 0 || $HTTP_GET_VARS['tt'] == 1 || $HTTP_GET_VARS['tt'] == 2))
{
$sql_topics_only_where .= " AND t.topic_type = '" . $HTTP_GET_VARS['tt'] . "'";
}