28 lines
No EOL
812 B
PHP
28 lines
No EOL
812 B
PHP
<?php
|
|
/*
|
|
****************************************************************************
|
|
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
|
|
| @ Author : ArslanHassan
|
|
| @ Software : ClipBucket , © PHPBucket.com
|
|
****************************************************************************
|
|
*/
|
|
|
|
require 'includes/config.inc.php';
|
|
$pages->page_redir();
|
|
|
|
$tid = $_GET['tid'];
|
|
$tdetails = $cbgroup->get_topic_details($tid);
|
|
|
|
if($tdetails)
|
|
{
|
|
$grp_details = $cbgroup->get_group_details($tdetails['group_id']);
|
|
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);
|
|
}
|
|
|
|
template_files('view_topic.html');
|
|
display_it();
|
|
?>
|