| @@ 43-48 (lines=6) @@ | ||
| 40 | $accessToken = isTokenFreshByAccessToken($location, $accessToken); |
|
| 41 | ||
| 42 | ||
| 43 | if($_POST['vote'] == "up") { |
|
| 44 | $accountCreator = new Upvote(); |
|
| 45 | } |
|
| 46 | else if($_POST['vote'] == "down") { |
|
| 47 | $accountCreator = new Downvote(); |
|
| 48 | } |
|
| 49 | ||
| 50 | $accountCreator->setAccessToken($accessToken); |
|
| 51 | $accountCreator->postId = $_POST['postId']; |
|
| @@ 50-55 (lines=6) @@ | ||
| 47 | $accessToken = isTokenFreshByAccessToken($location, $accessToken); |
|
| 48 | ||
| 49 | ||
| 50 | if($_POST['vote'] == "up") { |
|
| 51 | $accountCreator = new Upvote(); |
|
| 52 | } |
|
| 53 | else if($_POST['vote'] == "down") { |
|
| 54 | $accountCreator = new Downvote(); |
|
| 55 | } |
|
| 56 | ||
| 57 | $accountCreator->setAccessToken($accessToken); |
|
| 58 | $accountCreator->postId = $_POST['postId']; |
|
| @@ 145-150 (lines=6) @@ | ||
| 142 | ||
| 143 | if(!deviceUidHasVotedThisPostId($deviceUid_forId1, $_GET['postID'])) |
|
| 144 | { |
|
| 145 | if($_GET['vote'] == "up") |
|
| 146 | { |
|
| 147 | $accountCreator = new Upvote(); |
|
| 148 | } |
|
| 149 | else if($_GET['vote'] == "down") |
|
| 150 | { |
|
| 151 | $accountCreator = new Downvote(); |
|
| 152 | } |
|
| 153 | $accountCreator->setAccessToken($accessToken_forId1); |
|