diff --git a/radiant/help.cpp b/radiant/help.cpp index 3e67349a..ce818665 100644 --- a/radiant/help.cpp +++ b/radiant/help.cpp @@ -75,7 +75,7 @@ void process_xlink( const char* filename, const char *menu_name, const char *bas xmlChar* prop = xmlGetProp( pNode, reinterpret_cast( "url" ) ); ASSERT_NOTNULL( prop ); - if ( strstr( reinterpret_cast( prop ), "http://" ) ) { + if ( strstr( reinterpret_cast( prop ), "http://" ) || strstr( reinterpret_cast( prop ), "https://" ) ) { // complete URL url = reinterpret_cast( prop ); }