Superb simple hack, it'll come in handy for my website thanks. I had to modify the plugin to work with the
vB SSO a little to get it to work but otherwise it works without a hitch. I have this now working on vB 3.8 b1 and MediaWiki 1.13.2.
To get this to work with the vB SSO all you need to do is change the query (appears twice in the XML) from:
Code:
SELECT user_editcount
FROM mw_user
WHERE user.username = user_real_name
to
Code:
SELECT user_editcount
FROM wiki_user
WHERE user.username = user_name
For me
wiki_ is my prefix, it may be different for everyone else, the vB SSO however requires you to use
user_name rather than
user_real_name.
Here's the modified file if you want to add it to the front page AngelBlue, rename the file as you see fit.