From 78b010d112bd33615311f5981bfd268002e85620 Mon Sep 17 00:00:00 2001 From: darius Date: Sat, 1 Nov 2008 11:43:53 +0000 Subject: [PATCH] "removed quotes from the message switch for svn commit apparently they are passed literally to the repository DB" git-svn-id: trunk@17170 - --- components/lazsvnpkg/svnstatusform.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazsvnpkg/svnstatusform.pas b/components/lazsvnpkg/svnstatusform.pas index 4d8a271208..a23573e131 100644 --- a/components/lazsvnpkg/svnstatusform.pas +++ b/components/lazsvnpkg/svnstatusform.pas @@ -119,7 +119,7 @@ begin CmdLine := CmdLine + ' ' + StatusItem^.Path; end; - CmdLine := CmdLine + ' -m"' + SVNCommitMsgMemo.Text + '"'; + CmdLine := CmdLine + ' -m ' + SVNCommitMsgMemo.Text; ShowSVNCommitFrm(CmdLine); end;