Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
У меня IPB 2.2.2 Можно ли как-нибудь сделать снижение счетчика сообщений после их удаления. А то не красиво получается, флудеры на первых метсах по количеству постов.
Нужно чтобы в сразу, в момент удаления. Мне лень лишний раз зайти в админку
Находим в sources\action_public\moderate.php на 3440 строчке
$this->ipsclass->print->redirect_screen( $this->ipsclass->lang['post_deleted'], "showtopic=".$this->topic['tid']."&st=".intval($this->ipsclass->input['st']) );
Добавляем выше
$this->ipsclass->DB->simple_construct( array( 'select' => 'posts',
'from' => 'members',
'where' => "id=".$post['author_id']
) );
$this->ipsclass->DB->simple_exec();
$post_num = $this->ipsclass->DB->fetch_row();
$post_num['posts'] = $post_num['posts'] - 1;
$this->ipsclass->DB->simple_construct( array( 'update' => 'members',
'set' => "posts=".$post_num['posts'],
'where' => "id=".$post['author_id']
) );
$this->ipsclass->DB->simple_exec();