]> git.decadent.org.uk Git - maypole.git/commitdiff
Changed comment in call_exception()
authorDavid Baird <cpan.zerofive@googlemail.com>
Mon, 3 Oct 2005 20:02:26 +0000 (20:02 +0000)
committerDavid Baird <cpan.zerofive@googlemail.com>
Mon, 3 Oct 2005 20:02:26 +0000 (20:02 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@386 48953598-375a-da11-a14b-00016c27c3ee

lib/Maypole.pm

index 3077bfddc1e4466471667a1222f3f6a35160f406..ad3912592d6e2cc1a2cf7ca3bd26fae7bdc08d6a 100644 (file)
@@ -256,9 +256,8 @@ sub call_authenticate
         if  $r->model_class 
         and $r->model_class->can('authenticate');
     
-    # passing $r is unnecessary and redundant, but there's probably 
-    # a lot of code out there now using the 2nd instead of the 1st $r,
-    # so we may as well leave it
+    # if the driver ($r) and the request ($r) ever get separated out 
+    # properly, then passing the request as an argument will make more sense
     return $r->authenticate($r);   
 }