44 lines
No EOL
1.1 KiB
PHP
44 lines
No EOL
1.1 KiB
PHP
<?php
|
|
/*
|
|
*************************************************************
|
|
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
|
|
| @ Author : ArslanHassan
|
|
| @ Software : ClipBucket , © PHPBucket.com
|
|
*************************************************************
|
|
*/
|
|
|
|
define("THIS_PAGE",'edit_group');
|
|
define("PARENT_PAGE",'groups');
|
|
|
|
require 'includes/config.inc.php';
|
|
$userquery->logincheck();
|
|
$udetails = $userquery->get_user_details(userid());
|
|
assign('user',$udetails);
|
|
assign('p',$userquery->get_user_profile($udetails['userid']));
|
|
|
|
$gid = mysql_clean($_GET['gid']);
|
|
//get group details
|
|
$gdetails = $cbgroup->get_group_details($gid);
|
|
|
|
if($gdetails['userid'] != userid())
|
|
{
|
|
e(lang("you_cant_edit_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);
|
|
|
|
}
|
|
|
|
assign('group',$gdetails);
|
|
}
|
|
|
|
subtitle(lang("grp_edit_grp_title"));
|
|
template_files('edit_group.html');
|
|
display_it();
|
|
?>
|