@@ -, +, @@ permission for reordering routing lists - Give your patron full serial permissions - Create a subscription and a routing list for it - Change the sequence on the routing list using the pull downs - Verify this works - Remove any of the serial sub permissions (claim serials or similar) - Verify changing the sequence now results in a permission error - Apply patch - Verify that the permission error is gone now - Remove the routing permission - Verify the permission error is back (but this seems to make sense) --- serials/reorder_members.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/serials/reorder_members.pl +++ a/serials/reorder_members.pl @@ -29,7 +29,7 @@ my $subscriptionid = $query->param('subscriptionid'); my $routingid = $query->param('routingid'); my $rank = $query->param('rank'); -checkauth( $query, 0, { serials => 1 }, 'intranet' ); +checkauth( $query, 0, { serials => 'routing' }, 'intranet' ); reorder_members( $subscriptionid, $routingid, $rank ); --