1

(20 replies, posted in Supported extensions)

I don't think that this will ever be included into the core (read more, focus on posts by Rickard). Actually I don't really think that it is a good idea to use this extension because it doesn't recover values upon uninstallation, so if you are (or ever were) forced to prune old posts due to database capacity or whatever the reason for pruning database could be or you just change your mind – either way you are going to lose information about who has contributed the most in the past.

2

(20 replies, posted in Supported extensions)

Have you made the changes described in #7 before installation?

PS: Additionaly I've corrected the extension for those who don't want to fix it themselves, so if you didn't you can easily download it by clicking on this link and install right away.

Hello,
is there or could anyone make a extension that would allow setting a text that new topics and/or posts in a selected forum would have by default?

Any help would be greatly appreciated.

Thanks in advance,
Astro

4

(20 replies, posted in Supported extensions)

There were two typos in the manifest.xml file.

Lines 26–31 (typo is on line 28)

        $subquery = array(
            'SELECT' => 'count(*)',
            'FROM' => 'posts',
            'WHERE' => 'posts.poster_id = u.id',
            'GROUP BY' => 'posts.poster_id'
        );

should have been

        $subquery = array(
            'SELECT' => 'count(*)',
            'FROM' => 'posts as posts',
            'WHERE' => 'posts.poster_id = u.id',
            'GROUP BY' => 'posts.poster_id'
        );

and line 68

        <hook id="fn_delete_post_qr_delete_post'">

should have been

        <hook id="fn_delete_post_qr_delete_post">

Tested and works with 1.4.2.