Fixing style errors.
This commit is contained in:
parent
f823feba52
commit
92cc947623
@ -337,14 +337,34 @@ print "<!-- END PHP TEMPLATE CONTACTS -->\n";
|
|||||||
|
|
||||||
|
|
||||||
// TODO: Remove this functions after switch to $db->sort($sortfield, $sortorder);
|
// TODO: Remove this functions after switch to $db->sort($sortfield, $sortorder);
|
||||||
function nature_asc($left, $right) { return $left->nature > $right->nature; }
|
function nature_asc($left, $right)
|
||||||
function thirdparty_asc($left, $right) { return $left->thirdparty > $right->thirdparty; }
|
{
|
||||||
function contact_asc($left, $right) { return $left->contact > $right->contact; }
|
return $left->nature > $right->nature; }
|
||||||
function type_asc($left, $right) { return $left->type > $right->type; }
|
function thirdparty_asc($left, $right)
|
||||||
function status_asc($left, $right) { return $left->status > $right->status; }
|
{
|
||||||
|
return $left->thirdparty > $right->thirdparty; }
|
||||||
|
function contact_asc($left, $right)
|
||||||
|
{
|
||||||
|
return $left->contact > $right->contact; }
|
||||||
|
function type_asc($left, $right)
|
||||||
|
{
|
||||||
|
return $left->type > $right->type; }
|
||||||
|
function status_asc($left, $right)
|
||||||
|
{
|
||||||
|
return $left->status > $right->status; }
|
||||||
|
|
||||||
function nature_desc($left, $right) { return $left->nature < $right->nature; }
|
function nature_desc($left, $right)
|
||||||
function thirdparty_desc($left, $right) { return $left->thirdparty < $right->thirdparty; }
|
{
|
||||||
function contact_desc($left, $right) { return $left->contact < $right->contact; }
|
return $left->nature < $right->nature; }
|
||||||
function type_desc($left, $right) { return $left->type < $right->type; }
|
function thirdparty_desc($left, $right)
|
||||||
function status_desc($left, $right) { return $left->status < $right->status; }
|
{
|
||||||
|
return $left->thirdparty < $right->thirdparty; }
|
||||||
|
function contact_desc($left, $right)
|
||||||
|
{
|
||||||
|
return $left->contact < $right->contact; }
|
||||||
|
function type_desc($left, $right)
|
||||||
|
{
|
||||||
|
return $left->type < $right->type; }
|
||||||
|
function status_desc($left, $right)
|
||||||
|
{
|
||||||
|
return $left->status < $right->status; }
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user