Skip to content

Commit

Permalink
Adding poll table
Browse files Browse the repository at this point in the history
  • Loading branch information
starstryder committed Aug 12, 2024
1 parent 5f95e16 commit 4b0afb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csb/csb-apps/Mosaic/writeMosaicData.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
$result = $db->runQueryWhere($query, "iii", $params);

// Insert Data into the Database
$query = "INSERT INTO imagePoll (image_id, user_id, poll) VALUES (?, ?, ?)";
$query = "INSERT INTO image_poll (image_id, user_id, poll) VALUES (?, ?, ?)";
$params = array($imageID, $userID, $buttonValue);
$result = $db->runQueryWhere($query, "iis", $params);
}
Expand Down

0 comments on commit 4b0afb0

Please sign in to comment.