just installed , but couldn't find that it changed any settings... when I click on edit a forum it looks as usual - maybe i'm missing something? any screeshot of what it looks like in admin area?
this is that extensions code btw
<?xml version="1.0" encoding="UTF-8"?>
<extension engine="1.0">
<id>db_skip_post_counting</id>
<title>Skip Post Counting</title>
<version>1.1.0</version>
<description>Disable post count increments for users / forum totals on specific forums.</description>
<author>DollarBill (Greg)</author>
<minversion>1.3 Beta</minversion>
<maxtestedon>1.3 Beta</maxtestedon>
<install>
<![CDATA[
if (defined('EXT_CUR_VERSION')) {
if (EXT_CUR_VERSION == '1.0.0')
$forum_db->add_field('forums', 'skip_post_counting_t', 'tinyint(1)', false, 0, 'last_post');
}
else {
$forum_db->add_field('forums', 'skip_post_counting', 'tinyint(1)', false, 0, 'last_post');
$forum_db->add_field('forums', 'skip_post_counting_t', 'tinyint(1)', false, 0, 'last_post');
}
]]>
</install>
<uninstall>
<![CDATA[
$forum_db->drop_field('forums', 'skip_post_counting');
$forum_db->drop_field('forums', 'skip_post_counting_t');
]]>
</uninstall>
<hooks>
<hook id="po_qr_get_forum_info"><![CDATA[
$query['SELECT'] .= ', f.skip_post_counting';
]]></hook>
<hook id="po_qr_increment_num_posts"><![CDATA[
$query['WHERE'] .= ' AND '.$cur_posting['skip_post_counting'].'=0';
]]></hook>
<hook id="in_qr_get_post_stats"><![CDATA[
$query['WHERE'] = 'f.skip_post_counting_t=0';
]]></hook>
<hook id="afo_start"><![CDATA[
require $ext_info['path'].'/lang/'.$forum_user['language'].'.php';
]]></hook>
<hook id="afo_qr_get_forum_details"><![CDATA[
$query['SELECT'] .= ', f.skip_post_counting, f.skip_post_counting_t';
]]></hook>
<hook id="afo_edit_forum_details_end"><![CDATA[
?>
<fieldset class="frm-group">
<legend><span><?php echo $lang_skip_post_counting['Count posts user question'] ?></span></legend>
<div class="radbox frm-choice">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>">
<input type="checkbox" id="fld<?php echo $forum_page['fld_count'] ?>" name="skip_post_counting" value="1"<?php if ($cur_forum['skip_post_counting']) echo ' checked="checked"';?> />
</label>
</div>
</fieldset>
<fieldset class="frm-group">
<legend><span><?php echo $lang_skip_post_counting['Count posts total question'] ?></span></legend>
<div class="radbox frm-choice">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>">
<input type="checkbox" id="fld<?php echo $forum_page['fld_count'] ?>" name="skip_post_counting_t" value="1"<?php if ($cur_forum['skip_post_counting_t']) echo ' checked="checked"';?> />
</label>
</div>
</fieldset>
<?php
]]></hook>
<hook id="afo_save_forum_form_submitted"><![CDATA[
$skip_post_counting = (isset($_POST['skip_post_counting'])) ? 1 : 0;
$skip_post_counting_t = (isset($_POST['skip_post_counting_t'])) ? 1 : 0;
]]></hook>
<hook id="afo_qr_update_forum"><![CDATA[
$query['SET'] .= ', skip_post_counting='.$skip_post_counting.', skip_post_counting_t='.$skip_post_counting_t;
]]></hook>
</hooks>
</extension>