Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 422 → Rev 423

/trunk/jrest/services/InventoryStationList.php
66,8 → 66,7
$value=$row['count'];
}
$json = new Services_JSON();
$output = $json->encode((integer)$value);
$output = json_encode((integer)$value);
print($output);
return true;
85,8 → 84,7
$value[]=array($row['station']);
}
$json = new Services_JSON();
$output = $json->encode($value);
$output = json_encode($value);
print($output);
return true;