diff --git a/webapp/controller/TempToolsController.class.php b/webapp/controller/TempToolsController.class.php index cb78a2ac..68c85ca6 100644 --- a/webapp/controller/TempToolsController.class.php +++ b/webapp/controller/TempToolsController.class.php @@ -107,9 +107,15 @@ class TempToolsController extends BaseController { $account['name'] = $row['name']; } } - echo 'account_id,name,rank' . "\n"; + echo 'account_id,name,rank,score,time' . "\n"; foreach ($accounts as $account) { - echo $account['account_id'] . ',' . $account['name'] . ',' . $account['ranked'] . "\n"; + echo + phpcommon\extractOpenId($account['account_id']) . ',' + . $account['name'] . ',' + . $account['ranked'] . ',' + . $account['value'] . ',' + . phpcommon\timestamp_to_datetime($account['modifytime']) + . "\n"; } }