Skip to content

Commit ffa9651

Browse files
committed
Clean up
1 parent 79f659d commit ffa9651

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SECURITY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ $curl->setOpt(CURLOPT_FOLLOWLOCATION, true); // DANGER!
7272
$curl->get('https://www.example.com/image.png');
7373
```
7474

75-
### Keep SSL protections enabled.
75+
### Keep SSL protections enabled
7676

7777
* Do not disable SSL protections.
7878

7979
```php
80-
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); // DANGER!
81-
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // DANGER!
80+
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // DANGER!
81+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // DANGER!
8282
```

0 commit comments

Comments
 (0)