2009-08-25 12:16:42 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
2010-01-05 09:47:10 +00:00
|
|
|
|
****************************************************************
|
|
|
|
|
| Copyright (c) 2007-2008 Clip-Bucket.com. All rights reserved.
|
|
|
|
|
| @ Author : ArslanHassan
|
|
|
|
|
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com
|
|
|
|
|
****************************************************************
|
2009-08-25 12:16:42 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2009-11-16 11:55:31 +00:00
|
|
|
|
require_once '../includes/admin_config.php';
|
2010-01-20 07:03:11 +00:00
|
|
|
|
$userquery->admin_login_check();
|
2009-11-16 11:55:31 +00:00
|
|
|
|
|
2010-01-05 09:47:10 +00:00
|
|
|
|
$gpid = mysql_clean($_GET['group_id']);
|
|
|
|
|
|
|
|
|
|
$group = $cbgroup->get_details($gpid);
|
|
|
|
|
|
|
|
|
|
if($group)
|
|
|
|
|
{
|
|
|
|
|
if(isset($_POST['update_group']))
|
|
|
|
|
{
|
|
|
|
|
$_POST['group_id'] = $gpid;
|
|
|
|
|
$cbgroup->update_group();
|
|
|
|
|
$group = $cbgroup->get_group_details($gid);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
assign('group',$group );
|
|
|
|
|
}else
|
|
|
|
|
e("Group does not exist");
|
2009-08-25 12:16:42 +00:00
|
|
|
|
|
2010-01-13 09:53:21 +00:00
|
|
|
|
|
|
|
|
|
subtitle("Edit Group");
|
2009-11-16 11:55:31 +00:00
|
|
|
|
template_files('edit_group.html');
|
|
|
|
|
display_it();
|
2009-08-25 12:16:42 +00:00
|
|
|
|
|
|
|
|
|
?>
|