X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FPb%2FEntry.pm;h=f2fa9626c0aefd7298fb68ae076cc2be86e102fc;hb=0b282e58119cc0dbce678ef56eab20cc352557b5;hp=dbf66b47457f419d8dbc4403468f2f00650cabad;hpb=c2a23f84f4699ce135f517450a0bc153410ca223;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Pb/Entry.pm b/lib/Gruntmaster/Page/Pb/Entry.pm index dbf66b4..f2fa962 100644 --- a/lib/Gruntmaster/Page/Pb/Entry.pm +++ b/lib/Gruntmaster/Page/Pb/Entry.pm @@ -31,7 +31,7 @@ HTML sub _generate{ my ($self, $htc, $path, $lang) = @_; - $path =~ m,(?:ct/([^/])+/)?pb/(\w+)\.html$,; + $path =~ m,(?:ct/([^/]+)/)?pb/(\w+)\.html$,; my ($contest, $id) = ($1, $2); @@ -44,6 +44,8 @@ sub _generate{ $htc->param(id => $id); local $Gruntmaster::Data::contest = $contest if $contest; $htc->param(name => problem_name $id); + $htc->param(author => problem_author $id); + $htc->param(owner => problem_owner $id); $htc->param(statement => problem_statement $id); }