https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21031

Marcel de Rooy <m.de.r...@rijksmuseum.nl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Failed QA

--- Comment #8 from Marcel de Rooy <m.de.r...@rijksmuseum.nl> ---
>From the plack counterpart:
        RewriteCond %{REQUEST_URI} !^/api/v[0-1]+/app.pl
        RewriteRule ^/api/(v[0-9]+)/(.*)$ /api/$1/app.pl/api/$1/$2 [L,PT]

>From your patch:
    RewriteCond %{REQUEST_URI} !^/api/v[0-1]+/app.pl
    RewriteRule ^(v[0-9]+)/(.*)$ /api/$1/app.pl/api/$1/$2 [L]

Not the same. You start with v[0-9] which seems to be wrong ;)
How did you test?

Note btw that v[0-9]+ may not be what we want. It covers v987654321 for
instance. We do not have v0, but only v1. Hoping for v2 :)

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to