Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Commit

Permalink
comment out test until we've decided what the next test should be
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnaber committed Aug 29, 2017
1 parent d85a377 commit 08e7047
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/checkform.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function printLangOption($langCode) {
<button type="submit" name="_action_checkText"
onClick="doit(true);return false;" title="<?= isset($checkSubmitButtonTitle) ? $checkSubmitButtonTitle : '' ?>">
<?= $checkSubmitButtonValue ?>
<span class="checkButtonDetail">Instant and free</span>
<!--<span class="checkButtonDetail">Instant and free</span>-->
</button>
</div>
<div style="clear:both;"></div>
Expand Down
4 changes: 2 additions & 2 deletions www/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
$currentLang = 'en';

$isProofreadingTest = false;
if (isset($_COOKIE["proofreading_test"])) {
/*if (isset($_COOKIE["proofreading_test"])) {
$isProofreadingTest = $_COOKIE["proofreading_test"] == '1';
} else if ($checkDefaultLang == 'en') {
$cookieValue = time() % 2 == 1 ? "1" : "0";
setcookie("proofreading_test", $cookieValue, time() + 60*60*24*365, "/");
$isProofreadingTest = $cookieValue == '1';
}
}*/
?>
<!doctype html>
<html lang=en>
Expand Down

0 comments on commit 08e7047

Please sign in to comment.