Skip Menu |

This queue is for tickets about the Apache2-AuthenRadius CPAN distribution.

Report information
The Basics
Id: 56379
Status: resolved
Priority: 0/
Queue: Apache2-AuthenRadius

People
Owner: KEVIN [...] cpan.org
Requestors: cvicente [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.8
Fixed in: (no value)



Hi Kevin, The current version has some syntax errors. Here's a patch. Thx. cv --- AuthenRadius.pm.dist 2010-04-07 22:41:58.000000000 -0700 +++ AuthenRadius.pm 2010-04-07 22:37:54.000000000 -0700 @@ -79,12 +79,12 @@ } # Prepend realm if set - if ($r->dir_config("Auth_Radius_prependToUsername") { + if ($r->dir_config("Auth_Radius_prependToUsername")) { $user = $r->dir_config("Auth_Radius_prependToUsername") . $user; } # Postfix realm if set - if ($r->dir_config("Auth_Radius_postfixToUsername") { + if ($r->dir_config("Auth_Radius_postfixToUsername")) { $user .= $r->dir_config("Auth_Radius_postfixToUsername"); }
Subject: Apache2-AuthenRadius Syntax Error
Hi Carlos, I've implemented your patch and uploaded a new version. Thanks, -Kevin