Opened 18 years ago
Closed 18 years ago
#3606 closed (invalid)
URLField validates even with verify_exists=False
Reported by: | Baptiste | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Core (Other) | Version: | dev |
Severity: | Keywords: | urlfield | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Hello,
I have :
url = models.URLField(verify_exists=False)
but the URL is checked (and because it is a relative URL, validation fails).
I use the SVN version from today.
Note:
See TracTickets
for help on using tickets.
Setting
verify_exists=False
does not mean that the URL doesn't get validated, it just means that the URL will not be tested for existence.