Quote:
Originally Posted by COBRAws
Some bug reporting for 2.2.7 b1
in template links_admin;
Report #01: Apply CSS to this button.
Find:
Code:
$vbphrase[ll_admin_expire]
<input type="hidden" name="action" value="massedit" />
<input type="submit" name="expire" value="$vbphrase[ll_go]" />
Replace with:
Code:
$vbphrase[ll_admin_expire]
<input type="hidden" name="action" value="massedit" />
<input type="submit" class="bginput" name="expire" value="$vbphrase[ll_go]" />
Report #02: Add a space after each Usage stats. At the moment it will only show "0 Visits 0bytes". This fix will show "0 Visits 0 bytes"
Find:
Code:
<td class="alt2" align="center"><span class="smallfont"><if
condition="$totusage['fileshit']">$totusage[fileshit]<else />0</if> $vbphrase[ll_band_files]
$vbphrase[ll_band_usage_24]</span></td>
<td class="alt2" align="center"><span class="smallfont"><if condition="$totusage['byteshit']">$totusage[byteshit]<else />0</if>$vbphrase[ll_bytes]
$vbphrase[ll_band_usage_24]</span></td>
Replace With:
Code:
<td class="alt2" align="center"><span class="smallfont"><if condition="$totusage['fileshit']">$totusage[fileshit] <else />0 </if> $vbphrase[ll_band_files] $vbphrase[ll_band_usage_24]</span></td>
<td class="alt2" align="center"><span class="smallfont"><if condition="$totusage['byteshit']">$totusage[byteshit] <else />0 </if>$vbphrase[ll_bytes] $vbphrase[ll_band_usage_24]</span></td>
ITs not much, but hope it helps. Keep up the good work!
|
Thanks - appreciated.
The underlying thing I have to fix is the code I use to turn number like 123456 into 123K, etc, so that the spacing continues to look right in that situation, i.e. whether or not the space comes before the K or before the bytes. It's one of those tiny but annoying things that I had not dealt with.