Remove report site token todo message (is now resolved)

This commit is contained in:
Keir Nellyer 2016-10-27 23:48:54 +01:00
parent 30f56e3b12
commit e7ff175eff
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@
{
$connection = getConnection('ACCOUNT');
$statement = $connection->prepare('SELECT id FROM snapshots WHERE token = ?;');
$statement->bind_param('s', $token); // TODO: correct data type
$statement->bind_param('s', $token);
$statement->execute();
$statement->bind_result($snapshotId);
$statement->store_result();