Skip to content

Commit 55fe2ee

Browse files
authored
Merge pull request rails#46597 from priya-git-prog/add_missing_quotes
Fix: Add missing quotes [skip ci]
2 parents 656118b + 58e6e5c commit 55fe2ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ Here is the most straightforward test to check for XSS:
722722
This JavaScript code will simply display an alert box. The next examples do exactly the same, only in very uncommon places:
723723

724724
```html
725-
<img src=javascript:alert('Hello')>
725+
<img src="javascript:alert('Hello')">
726726
<table background="javascript:alert('Hello')">
727727
```
728728

0 commit comments

Comments
 (0)