2013-10-07 12:17:06 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
****************************************************************************
|
|
|
|
|
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
|
|
|
|
|
| @ Author : ArslanHassan
|
|
|
|
|
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com
|
|
|
|
|
****************************************************************************
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
define("THIS_PAGE",'view_topic');
|
|
|
|
|
define("PARENT_PAGE",'groups');
|
|
|
|
|
|
|
|
|
|
require 'includes/config.inc.php';
|
|
|
|
|
$pages->page_redir();
|
|
|
|
|
|
|
|
|
|
$tid = $_GET['tid'];
|
|
|
|
|
$tid = mysql_clean($tid);
|
|
|
|
|
|
|
|
|
|
$tdetails = $cbgroup->get_topic_details($tid);
|
|
|
|
|
|
|
|
|
|
if($tdetails)
|
|
|
|
|
{
|
|
|
|
|
$grp_details = $cbgroup->get_group_details($tdetails['group_id']);
|
|
|
|
|
if($grp_details['post_type'] == 1 && !$cbgroup->is_member(userid(),$grp_details['group_id'],TRUE)) {
|
|
|
|
|
if($cbgroup->is_member(userid(),$grp_details['group_id']))
|
|
|
|
|
e(lang("view_tp_inactive_user"));
|
|
|
|
|
else
|
|
|
|
|
e(lang("view_tp_join"));
|
|
|
|
|
$Cbucket->show_page = false;
|
|
|
|
|
} else {
|
|
|
|
|
assign('group',$grp_details);
|
|
|
|
|
assign('topic',$tdetails);
|
|
|
|
|
subtitle($grp_details['group_name']);
|
|
|
|
|
//Calling all functions when a topic is called
|
|
|
|
|
call_view_topic_functions($tdetails);
|
|
|
|
|
}
|
2015-06-02 12:30:43 +00:00
|
|
|
|
|
|
|
|
|
$glist['exclude'] = $tdetails['group_id'];
|
|
|
|
|
$glist['limit'] = 10;
|
|
|
|
|
$groups = $cbgroup->get_groups($glist);
|
|
|
|
|
Assign('groups', $groups);
|
2013-10-07 12:17:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-02 12:30:43 +00:00
|
|
|
|
|
|
|
|
|
|
2013-10-07 12:17:06 +00:00
|
|
|
|
template_files('view_topic.html');
|
|
|
|
|
display_it();
|
|
|
|
|
?>
|