]> git.decadent.org.uk Git - maypole.git/commitdiff
updated changelog, fixed mistake in CGI::Maypole
authorAaron Trevena <aaron.trevena@gmail.com>
Mon, 11 Jun 2007 14:12:46 +0000 (14:12 +0000)
committerAaron Trevena <aaron.trevena@gmail.com>
Mon, 11 Jun 2007 14:12:46 +0000 (14:12 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@569 48953598-375a-da11-a14b-00016c27c3ee

Changes
lib/CGI/Maypole.pm

diff --git a/Changes b/Changes
index 71e5006a72c79e534f4ab4b952d1d0e9cb4c411f..3addc38b6d10464db5f34c04654112295b65398b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -28,6 +28,7 @@ For information about current developments and future releases, see:
    changed template path to only look for custom, factory, etc on first/only path provided
    fix to redirect_request
    Fixed typo in _do_update_or_create (bug 26495)
+   added new hook - preprocess_location
 
 2.111 Mon 30 April 2007
    - forked - see 2.111 changelog
index 5fd736d3e25681cd240c61d2d233252e46e0c613..dda15fcd7a52df6c8dabd3616b4bb22223d1e77a 100644 (file)
@@ -92,7 +92,7 @@ sub parse_location
         $r->headers_in->set($field_name => $cgi->http($http_header));
     }
 
-    $self->preprocess_location();
+    $r->preprocess_location();
 
     my $path = $cgi->url( -absolute => 1, -path_info => 1 );
     my $loc = $cgi->url( -absolute => 1 );