Quote:
Originally Posted by Tungsten
Hey Evil... how would I modify the code in this latest version for vB3 so that it sorts by 60' times by default?
And thanks again for this hack. You rock, man.
|
In timeslips.php find:
Code:
// If no action is set order by quarter
if (empty($_REQUEST['do']))
{
$_REQUEST['do'] ='quarter';
}
Replace it with:
Code:
// If no action is set order by sixty
if (empty($_REQUEST['do']))
{
$_REQUEST['do'] ='sixty';
}
Find:
Code:
}
else
{
$cond.=" WHERE userfield.field55>'".intval($number)."'";
$condition.=" AND userfield.field55>'".intval($number)."'";
$orderby="userfield.field55";
$direction=ASC;
$bracket3="<b>[</b>";
$bracket4="<b>]</b>";
Replace it with:
Code:
}
else
{
$cond.=" WHERE userfield.field52>'".intval($number)."'";
$condition.=" AND userfield.field52>'".intval($number)."'";
$orderby="userfield.field52";
$direction=ASC;
$bracket1="<b>[</b>";
$bracket2="<b>]</b>";
That should do it.
DeeperImage,
Looks great! Added your link.