You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The updated validateUrl() method in the Validator class fails for URLs without a path and with query string in 5.2. The documentation for 5.2 also incorrectly states that The field under validation must be a valid URL according to PHP's filter_var function.. It appears that the filter_var based method was replaced in 5.2 with a new version.
The updated validateUrl() method in the Validator class fails for URLs without a path and with query string in 5.2. The documentation for 5.2 also incorrectly states that
The field under validation must be a valid URL according to PHP's filter_var function.
. It appears that the filter_var based method was replaced in 5.2 with a new version.Repro
http://google.com
passes validationhttp://google.com/maps?q=usa
passes validationhttp://google.com/?q=usa
passes validationhttp://google.com?q=usa
fails validationThe text was updated successfully, but these errors were encountered: