Browse Source

integer overflow bug on 32-bit systems

pull/40/head
Savetheinternet 13 years ago
parent
commit
290335194a
  1. 2
      post.php

2
post.php

@ -316,7 +316,7 @@
if(isset($config['filename_func']))
$post['file_id'] = $config['filename_func']($post);
else
$post['file_id'] = floor(microtime(true) * 1000);
$post['file_id'] = time() . substr(microtime(), 2, 3);
$post['file'] = $board['dir'] . $config['dir']['img'] . $post['file_id'] . '.' . $post['extension'];
$post['thumb'] = $board['dir'] . $config['dir']['thumb'] . $post['file_id'] . '.' . ($config['thumb_ext'] ? $config['thumb_ext'] : $post['extension']);

Loading…
Cancel
Save