Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
hschletz committed Dec 23, 2013
1 parent 5b913bf commit c544262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/models/Computer.php
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,7 @@ static function findDuplicates($criteria, $count, $order='Id', $direction='asc')
$outer = $db->select()
->from(
'hardware',
array('id, name, lastcome')
array('id', 'name', 'lastcome')
)
->joinLeft(
'networks',
Expand All @@ -1683,7 +1683,7 @@ static function findDuplicates($criteria, $count, $order='Id', $direction='asc')
->joinLeft(
'bios',
'bios.hardware_id=hardware.id',
array('ssn, assettag')
array('ssn', 'assettag')
);
if ($table == 'hardware') {
$outer->where(
Expand Down

0 comments on commit c544262

Please sign in to comment.