Encode more unsafe characters in urls

This commit is contained in:
Ansgar Becker
2012-05-01 12:10:17 +00:00
parent 62c0396165
commit 30474de294
2 changed files with 15 additions and 6 deletions

View File

@ -273,7 +273,7 @@ procedure TfrmSQLhelp.ButtonOnlinehelpClick(Sender: TObject);
begin
// Link/redirect to mysql.com for further help
ShellExec( APPDOMAIN + 'sqlhelp.php?mysqlversion='+inttostr(MainForm.ActiveConnection.ServerVersionInt)+
'&keyword='+urlencode(keyword) );
'&keyword='+EncodeURL(keyword) );
end;