clipbucket/upload/edit_group.php

39 lines
1,006 B
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?php
/*
*************************************************************
| Copyright (c) 2007-2009 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';
$userquery->logincheck();
$udetails = $userquery->get_user_details(userid());
assign('user',$udetails);
assign('p',$userquery->get_user_profile($udetails['userid']));
2009-08-25 12:16:42 +00:00
$gid = mysql_clean($_GET['gid']);
//get group details
$gdetails = $cbgroup->get_group_details($gid);
2009-08-25 12:16:42 +00:00
if($gdetails['userid'] != userid())
{
e("You cannot edit this group");
$Cbucket->show_page = false;
}else{
//Updating Video Details
if(isset($_POST['update_group']))
{
$_POST['group_id'] = $gid;
$cbgroup->update_group();
$gdetails = $cbgroup->get_group_details($gid);
2009-08-25 12:16:42 +00:00
}
assign('group',$gdetails);
}
2009-08-25 12:16:42 +00:00
template_files('edit_group.html');
display_it();
2009-08-25 12:16:42 +00:00
?>