Opened 17 years ago

Closed 17 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.

Change History (1)

comment:1 by Gary Wilson <gary.wilson@…>, 17 years ago

Resolution: invalid
Status: newclosed

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.

Note: See TracTickets for help on using tickets.
Back to Top