Skip to content

Commit 57671d5

Browse files
committed
Fix backport
1 parent 273d7ec commit 57671d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/qgsfcgiserverrequest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ QgsFcgiServerRequest::QgsFcgiServerRequest()
111111
for ( const auto &headerKey : qgsEnumMap<QgsServerRequest::RequestHeader>().values() )
112112
{
113113
const QString headerName = QgsStringUtils::capitalize(
114-
QString( headerKey ).replace( QLatin1Char( '_' ), QLatin1Char( ' ' ) ), Qgis::Capitalization::TitleCase
114+
QString( headerKey ).replace( QLatin1Char( '_' ), QLatin1Char( ' ' ) ), QgsStringUtils::Capitalization::TitleCase
115115
).replace( QLatin1Char( ' ' ), QLatin1Char( '-' ) );
116116
const char *result = getenv( QStringLiteral( "HTTP_%1" ).arg( headerKey ).toStdString().c_str() );
117117
if ( result && strlen( result ) > 0 )

0 commit comments

Comments
 (0)