Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html *
|
* $Id: functions_upload.php 3592 2008-01-09 00:01:41Z Tikitiki $
| * $Id: functions_upload.php 4005 2008-07-10 17:53:25Z Tikitiki $
|
*/
| */
|
Zeile 71 | Zeile 71 |
---|
$posthash = $db->escape_string($posthash); if($posthash != "" && !$pid) {
|
$posthash = $db->escape_string($posthash); if($posthash != "" && !$pid) {
|
$query = $db->simple_select(TABLE_PREFIX."attachments", "*", "posthash='$posthash'");
| $query = $db->simple_select(TABLE_PREFIX."attachments", "*", "posthash='$posthash'");
|
} else {
| } else {
|
Zeile 94 | Zeile 94 |
---|
@unlink($mybb->settings['uploadspath']."/".$attachment['thumbnail']); } }
|
@unlink($mybb->settings['uploadspath']."/".$attachment['thumbnail']); } }
|
if($post['pid'])
| if($post['tid'])
|
{ update_thread_counters($post['tid'], array("attachmentcount" => "-{$num_attachments}")); }
| { update_thread_counters($post['tid'], array("attachmentcount" => "-{$num_attachments}")); }
|
Zeile 410 | Zeile 410 |
---|
$plugins->run_hooks_by_ref("upload_attachment_do_insert", $attacharray);
$db->insert_query(TABLE_PREFIX."attachments", $attacharray);
|
$plugins->run_hooks_by_ref("upload_attachment_do_insert", $attacharray);
$db->insert_query(TABLE_PREFIX."attachments", $attacharray);
|
if($attacharray['pid'] > 0)
| if($tid)
|
{
|
{
|
$post = get_post($attacharray['pid']); update_thread_counters($post['tid'], array("attachmentcount" => +1));
| update_thread_counters($tid, array("attachmentcount" => "+1"));
|
}
$aid = $db->insert_id();
| }
$aid = $db->insert_id();
|