
07-16-2009, 10:22 PM
|
|
|
Join Date: Oct 2005
Location: OC, California
Posts: 732
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Martyn1983
I think its just been a standard thing, though you may be right. If thats the case then the 1/8 listing on the listings page maybe isnt an issue, I just wonder if the front page blocks could have just 1/4 times on them? Certainly where I am we refer to 1/4 mile times!
|
Open garage_func_var.php
On Line 1426 Change
Quote:
$boxtitle = array(
'FirstCol' => construct_phrase($vbphrase[garage_global_vehicle], $vbulletin->options['garage_veh_names_default']),
'SecondCol' => $vbphrase['garage_thead_eighth'],
'ThirdCol' => $vbphrase['garage_thead_qtr']
);
|
to be
Quote:
$boxtitle = array(
'FirstCol' => construct_phrase($vbphrase[garage_global_vehicle], $vbulletin->options['garage_veh_names_default']),
'SecondCol' => $vbphrase['garage_thead_qtr'],
'ThirdCol' => ''
);
|
On Line 1432 Change
Quote:
$boxwidth = array(
'one' => '47%',
'two' => '13%',
'three' => '40%'
);
|
to be
Quote:
$boxwidth = array(
'one' => '47%',
'two' => '48%',
'three' => '5%'
);
|
On Line 1501 Change
Quote:
$boxdata = array(
'FirstCol' => '<a href="' . $vehicle_link . '" title="' . construct_phrase($vbphrase[garage_adm_view], $vbulletin->options['garage_veh_names_default']) . '">' . $vehicle_data[made_year] . ' ' . $vehicle_data[make] . ' ' . $vehicle_data[model] . '</a>',
'SecondCol' => $eightmilerun,
'ThirdCol' => $qtrmilerun
);
|
to be
Quote:
$boxdata = array(
'FirstCol' => '<a href="' . $vehicle_link . '" title="' . construct_phrase($vbphrase[garage_adm_view], $vbulletin->options['garage_veh_names_default']) . '">' . $vehicle_data[made_year] . ' ' . $vehicle_data[make] . ' ' . $vehicle_data[model] . '</a>',
'SecondCol' => $qtrmilerun,
'ThirdCol' => ''
);
|
|