Skip to content

Commit

Permalink
fixed small rendering bug in Mojolicious::Plugin::PODRenderer
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Feb 25, 2012
1 parent 067fe79 commit 47cc5dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -2,6 +2,7 @@ This file documents the revision history for Perl extension Mojolicious.

2.54 2012-02-25 00:00:00
- Improved documentation.
- Fixed small rendering bug in Mojolicious::Plugin::PODRenderer.

2.53 2012-02-25 00:00:00
- Improved Hypnotoad with many info level log messages.
Expand Down
3 changes: 1 addition & 2 deletions lib/Mojolicious/Plugin/PODRenderer.pm
Expand Up @@ -81,8 +81,7 @@ sub register {
);

# Rewrite headers
my $url = $self->req->url->clone;
$url =~ s|%2F|/|gi;
my $url = $self->req->url->clone;
my $sections = [];
$dom->find('h1, h2, h3')->each(
sub {
Expand Down

0 comments on commit 47cc5dd

Please sign in to comment.