Browse Source

* Append content in DoHandleRequest, instead of replacing it

git-svn-id: trunk@8520 -
joost 18 years ago
parent
commit
cd5557fb66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-web/src/fpweb.pp

+ 1 - 1
packages/fcl-web/src/fpweb.pp

@@ -253,7 +253,7 @@ begin
     Inherited DoHandleRequest(ARequest,AResponse,Handled);
     Inherited DoHandleRequest(ARequest,AResponse,Handled);
     If not Handled then
     If not Handled then
       begin
       begin
-      AResponse.Content:=Self.Content;
+      AResponse.Contents.AddStrings(Self.Contents);
       Handled:=(AResponse.Content<>'');
       Handled:=(AResponse.Content<>'');
       end;
       end;
     end;
     end;