Browse Source

cleanup

pull/40/head
Savetheinternet 13 years ago
parent
commit
2ac8dc2c0f
  1. 2
      inc/functions.php
  2. 11
      post.php

2
inc/functions.php

@ -1418,7 +1418,7 @@
switch($type) { switch($type) {
case 'jpg': case 'jpg':
case 'jpeg': case 'jpeg':
if(!$image = imagecreatefromjpeg($source_pic)) { if(!$image = @imagecreatefromjpeg($source_pic)) {
unlink($source_pic); unlink($source_pic);
error($config['error']['invalidimg']); error($config['error']['invalidimg']);
} }

11
post.php

@ -36,7 +36,7 @@
} }
} }
sql_open();
// Check if banned // Check if banned
checkBan(); checkBan();
@ -97,7 +97,7 @@
} }
} }
sql_open();
// Check if banned // Check if banned
checkBan(); checkBan();
@ -176,9 +176,6 @@
if(time()-$user['appeared']<LURKTIME) error(ERROR_LURK); if(time()-$user['appeared']<LURKTIME) error(ERROR_LURK);
*/ */
// Open database connection
sql_open();
// Check if banned // Check if banned
checkBan(); checkBan();
@ -487,6 +484,7 @@
buildIndex(); buildIndex();
if(isset($_SERVER['HTTP_REFERER'])) {
// Tell Javascript that we posted successfully // Tell Javascript that we posted successfully
if(isset($_COOKIE[$config['cookies']['js']])) if(isset($_COOKIE[$config['cookies']['js']]))
$js = json_decode($_COOKIE[$config['cookies']['js']]); $js = json_decode($_COOKIE[$config['cookies']['js']]);
@ -496,6 +494,7 @@
$js->{$_SERVER['HTTP_REFERER']} = true; $js->{$_SERVER['HTTP_REFERER']} = true;
// Encode and set cookie // Encode and set cookie
setcookie($config['cookies']['js'], json_encode($js), 0, $config['cookies']['jail']?$config['cookies']['path']:'/', null, false, false); setcookie($config['cookies']['js'], json_encode($js), 0, $config['cookies']['jail']?$config['cookies']['path']:'/', null, false, false);
}
$root = $post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root']; $root = $post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'];
@ -514,7 +513,7 @@
exit; exit;
} else { } else {
if(!file_exists($config['has_installed'])) { if(!file_exists($config['has_installed'])) {
sql_open();
// Build all boards // Build all boards
$boards = listBoards(); $boards = listBoards();

Loading…
Cancel
Save