clipbucket/upload/view_topic.php

28 lines
812 B
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?php
/*
****************************************************************************
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com
****************************************************************************
2009-08-25 12:16:42 +00:00
*/
require 'includes/config.inc.php';
$pages->page_redir();
$tid = $_GET['tid'];
$tdetails = $cbgroup->get_topic_details($tid);
2009-08-25 12:16:42 +00:00
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);
2009-08-25 12:16:42 +00:00
}
template_files('view_topic.html');
display_it();
2009-08-25 12:16:42 +00:00
?>