Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
tokuhirom committed Sep 4, 2009
1 parent 010c979 commit 9ac1872
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/PSGIRef/Request.pm
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ sub _parse_params {
}
}

sub _parse_keywordlist {
my ( $self, $data ) = @_;
return () unless defined $data;
$data = URI::Escape::uri_unescape($data);
my @keywords = split /\s+/, $data;
return @keywords;
}

sub _add_param {
my ( $self, $param, $value, $overwrite ) = @_;
return () unless defined $param and defined $value;
Expand Down

0 comments on commit 9ac1872

Please sign in to comment.