From 2c980d2596e9d9c520b70265438d879348d2f47a Mon Sep 17 00:00:00 2001 From: Marco Hugentobler Date: Mon, 4 Feb 2013 21:27:22 +0100 Subject: [PATCH] Show more verbose error message (ticket #7095) --- src/providers/wfs/qgswfscapabilities.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/wfs/qgswfscapabilities.cpp b/src/providers/wfs/qgswfscapabilities.cpp index 18c8ab29db8..3d946de11a8 100644 --- a/src/providers/wfs/qgswfscapabilities.cpp +++ b/src/providers/wfs/qgswfscapabilities.cpp @@ -208,7 +208,7 @@ void QgsWFSCapabilities::capabilitiesReplyFinished() if ( version != "1.0.0" && version != "1.0" ) { mErrorCode = WFSVersionNotSupported; - mErrorMessage = tr( "The WFS server does not support WFS version 1.0" ); + mErrorMessage = tr( "Either the WFS server does not support WFS version 1.0.0 or the WFS url is wrong" ); emit gotCapabilities(); return; }