about summary refs log tree commit homepage
path: root/lib/mongrel/rails.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mongrel/rails.rb')
-rw-r--r--lib/mongrel/rails.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/mongrel/rails.rb b/lib/mongrel/rails.rb
index 6bc3b2d..8ebd76d 100644
--- a/lib/mongrel/rails.rb
+++ b/lib/mongrel/rails.rb
@@ -21,8 +21,6 @@ require 'cgi'
 
 module Mongrel
   module Rails
-
-
     # Implements a handler that can run Rails and serve files out of the
     # Rails application's public directory.  This lets you run your Rails
     # application with Mongrel during development and testing, then use it
@@ -65,7 +63,7 @@ module Mongrel
         return if response.socket.closed?
 
         path_info = request.params[Mongrel::Const::PATH_INFO]
-        page_cached = request.params[Mongrel::Const::PATH_INFO] + ".html"
+        page_cached = path_info + ".html"
 
         if @files.can_serve(path_info)
           # File exists as-is so serve it up