Ok, I've fixed my issue the issue I had.
If anyone else gets the issue wherein the hack is working fine, however in the forum statistics section at the bottom, where it shows the last person to have uploaded an image, if their user ID is showing wrong then do the following:
In the INSTALL.txt file you'll find this information:
Quote:
step 4 FORUM_HOME templates changes
find;
PHP Code:
<div>
$vbphrase[threads]: $totalthreads,
$vbphrase[posts]: $totalposts,
$vbphrase[members]: $numbermembers<if condition="$show['activemembers']">,
<span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers,</span>
</if>
below it add
PHP Code:
, Users Hosting Images: $total_users,
Total images Hosted: $total_images,
Newest Hosted Image: $image_name by <a href=img_view_all.php?do=imgs&id=$userid>$username</a>
|
Where it says "do=imgs&id=$userid>$username</a>", change this to "do=imgs&id=$rows[1]".
Next, go to Plugin System > Plugin Manager > Edit Image Hosting 2.1 > Find "$userid=$rows[0];" and change it to "$userid=$rows[1];".
It should now start working.
This is basically what loneranger said above.