Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jun 30, 2021
1 parent cfcfa52 commit 23c08d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/UserProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ public function save()
is_null($this->github_username) ? PDO::PARAM_NULL : PDO::PARAM_STR
));

$stmt->bindParam(':instagram', $this->instagram_username, (
$stmt->bindParam(':ig', $this->instagram_username, (
is_null($this->instagram_username) ? PDO::PARAM_NULL : PDO::PARAM_STR
));

Expand Down

0 comments on commit 23c08d8

Please sign in to comment.