diff --git a/upload/ajax.php b/upload/ajax.php index 5b56438f..e648de05 100644 --- a/upload/ajax.php +++ b/upload/ajax.php @@ -1722,75 +1722,20 @@ if(!empty($mode)) case 'photo_ajax':{ try{ - /* if(isset($_POST['photo']) && isset($_POST['user'])) { // Exception Handling. - $photo = $_POST['photo']; - $user = $_POST['user']; - $params['details'] = $photo; - //pex($user,true); - if($myquery->is_commentable($photo,'p')) { - assign('id',$photo['photo_id']); - assign('type',"p"); - $temp = Fetch($style_dir.'/blocks/comments/add_image_comment.html'); - } - - $category = $userquery->get_category($user['category']); - $collection = $photo['collection_id']; - $total_comments = $photo['total_comments']; - $photo_title = $photo['photo_title']; - $photo_description = $photo['photo_description']; - $photo_tags = $photo['photo_tags']; - $photo_views = $photo['views']; - $photo_id = $photo['photo_id']; - $details = json_encode($photo['photo_details']); - $size = '_'.$details[4]; // size of an image - if(is_null($photo)) { - throw new Exception("Value is not coming from the ajax call"); - } - $img = get_photos($params['details']); // Getting photos. - $srcString = BASEURL.'/files/photos/'.$photo['file_directory'].'/'.$photo['filename'].$size.'.'.$photo['ext']; - $photo_key = $photo['photo_key']; - $response['photo'] = $photo; - $response['src_string'] = $srcString; // Image Source. - $response['photo_key'] = $photo_key; - $response['collection_id'] = $collection; // Image key. - $response['photo_title'] = $photo_title; - $response['photo_description'] = $photo_description; - $response['photo_views'] = $photo_views; - $response['photo_tags'] = $photo_tags; - $response['category'] = $category['category_name']; - $response['template'] = $temp; - $response['total_comments'] = $total_comments; - $response['photo_id'] = $photo_id; - echo json_encode($response); // Json Response. - }*/ if(isset($_POST['photo_pre']) ) { $photo = $_POST['photo_pre']; $user = $_POST['user']; $items = $_POST['item']; $ci_id = $photo['ci_id']; - $photo_title = $photo['photo_title']; - $category = $userquery->get_category($user['category']); - $photo_description = $photo['photo_description']; - $photo_tags = $photo['photo_tags']; - $photo_views = $photo['views']; $collection = $photo['collection_id']; // collection id. $link = $cbcollection->get_next_prev_item($ci_id,$collection,$item=$items,$limit=1,$check_only=false); // getting Previous item - $srcString =BASEURL.'/files/photos/'.$link[0]['file_directory'].'/'.$link[0]['filename'].$link[0]['size'].'.'.$link[0]['ext']; // Image Source... - $photo_key = $link[0]['photo_key']; // Image Key. - $total_comments = $link[0]['total_comments']; - + $srcString =BASEURL.'/files/photos/'.$link[0]['file_directory'].'/'.$link[0]['filename'].'.'.$link[0]['ext']; // Image Source... + $photo_key = $link[0]['photo_key']; // Image Key. $response['photo'] = $link; $response['photo_key'] = $photo_key; $response['src_string'] = $srcString; // Image source. $response['collection_id'] = $collection; - $response['photo_title'] = $photo_title; - $response['photo_description'] = $photo_description; - $response['photo_views'] = $photo_views; - $response['photo_tags'] = $photo_tags; - $response['category'] = $category['category_name']; - $response['template'] = $temp; - $response['total_comments'] = $total_comments; sleep(1); echo json_encode($response); }