From 4b1d5719f974e1f0f65b757bea49bdcc5b2005eb Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Thu, 20 Jan 2011 19:28:53 +1100 Subject: [PATCH] removed debug crap --- post.php | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/post.php b/post.php index 04250ff7..306c050b 100644 --- a/post.php +++ b/post.php @@ -1,7 +1,4 @@ - 30) $post['filename'] = substr($post['filename'], 0, 27).'…'; // Move the uploaded file if(!@move_uploaded_file($_FILES['file']['tmp_name'], $post['file'])) error(ERROR_NOMOVE); - file_put_contents('test.log', "Moved it successfully (to {$post['file']}), I think!\n", FILE_APPEND); - if($post['zip']) { // Validate ZIP file if(is_resource($zip = zip_open($post['zip']))) @@ -195,14 +189,10 @@ $post['extension'] = strtolower(substr($post['file'], strrpos($post['file'], '.') + 1)); } - file_put_contents('test.log', "Getting image size of {$post['file']}\n", FILE_APPEND); - $size = @getimagesize($post['file']); $post['width'] = $size[0]; $post['height'] = $size[1]; - file_put_contents('test.log', "GOT IT! {$post['width']}x{$post['height']}\n", FILE_APPEND); - // Check if the image is valid if($post['width'] < 1 || $post['height'] < 1) { unlink($post['file']); @@ -214,18 +204,12 @@ error(ERR_MAXSIZE); } - file_put_contents('test.log', "Making a hash\n", FILE_APPEND); - $hash_function = FILE_HASH; $post['filehash'] = $hash_function($post['file']); $post['filesize'] = filesize($post['file']); - file_put_contents('test.log', "Got a hash ({$post['filehash']})! Loading image...\n", FILE_APPEND); - $image = createimage($post['extension'], $post['file']); - file_put_contents('test.log', "Image loaded!\n", FILE_APPEND); - if(REDRAW_IMAGE && !$post['zip']) { switch($post['extension']) { case 'jpg': @@ -248,12 +232,9 @@ } } - file_put_contents('test.log', "Resizing...\n", FILE_APPEND); // Create a thumbnail $thumb = resize($image, $post['width'], $post['height'], $post['thumb'], THUMB_WIDTH, THUMB_HEIGHT); - file_put_contents('test.log', "Resized!\n", FILE_APPEND); - $post['thumbwidth'] = $thumb['width']; $post['thumbheight'] = $thumb['height']; } @@ -272,8 +253,6 @@ $post['thumb'] = substr_replace($post['thumb'], '', 0, strlen($board['dir'] . DIR_THUMB)); } - file_put_contents('test.log', "Posting...!\n", FILE_APPEND); - // Todo: Validate some more, remove messy code, allow more specific configuration $id = post($post, $OP);