There's a few bugs ..
1. The enforcement for uploading of image if under the set time does not appear to work.
2. The maximum timeslip image size is not changeable in the admincp
3. The users hopepage on the Details page shows up as the user looking at the details not the user.
4. The timeslip pic that comes up is the users avatar in my case.
5. The DECIMAL values for fields 52,53 and 55 should be DECIMAL(6,3) NOT DECIMAL(4,3) in the XML Installer File.
6. Hooks would be much better than file edits
The fix for #3 is to change the following in getvehicleinfo template..
FROM
Code:
<tr>
<td class="alt1" width="50%">
<strong>$vbphrase[timeslips_homepage]</strong>:
</td>
<td class="alt2" width="50%">
$homepage
</td>
</tr>
TO
Code:
<if condition="$show['homepage']">
<tr>
<td class="alt1" width="50%">
<strong>$vbphrase[timeslips_homepage]</strong>:
</td>
<td class="alt2" width="50%">
<a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
</td>
</tr>
</if>