clipbucket/upload/admin_area/edit_photo.php
Fawaz 0445c2886d Added : Language Phrases
Fixed : Editors Pick
Added : Converted photo upload form to Smarty Function
2010-12-28 13:56:44 +00:00

42 lines
No EOL
1.1 KiB
PHP

<?php
/*
****************************************************************************************************
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved. |
| @ Author : ArslanHassan |
| @ Software : ClipBucket , © PHPBucket.com |
****************************************************************************************************
*/
require'../includes/admin_config.php';
$userquery->admin_login_check();
$userquery->login_check('video_moderation');
$pages->page_redir();
$id = mysql_clean($_GET['photo']);
if(isset($_POST['update']))
{
$cbphoto->update_photo();
}
//Performing Actions
if($_GET['mode']!='')
{
$cbphoto->photo_actions($_GET['mode'],$id);
}
$p = $cbphoto->get_photo($id);
$p['user'] = $p['userid'];
assign('data',$p);
$requiredFields = $cbphoto->load_required_forms($p);
$otherFields = $cbphoto->load_other_forms($p);
assign('requiredFields',$requiredFields);
assign('otherFields',$otherFields);
subtitle("Edit Photo");
template_files('edit_photo.html');
display_it();
?>