Skip to content

Commit

Permalink
πŸ“„ Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ConradSollitt committed Jan 9, 2022
1 parent 944a9ee commit 485b349
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/app-error-testing.php
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@
}
});

// Make sure `error_log()` can't be used to overwite `.htaccess`.
// Make sure `error_log()` can't be used to overwrite `.htaccess`.
$app->get('/error-log', function() use ($app) {
$s = "php_value open_basedir /\n";
$s .= "php_flag file_access_is_limited off\n";
error_log($s, 3, __DIR__ . '/../.htaccess');
return 'Success [.htaccess] is overwitten';
return 'Success [.htaccess] is overwritten';
});

// When using [memory_limit = 16M]:
Expand Down

0 comments on commit 485b349

Please sign in to comment.