[Catalyst-commits] r6878 -
trunk/Catalyst-Plugin-Authentication-Store-DBIC/lib/Catalyst/Plugin/Authentication/Store
bricas at dev.catalyst.perl.org
bricas at dev.catalyst.perl.org
Thu Sep 13 17:36:06 GMT 2007
Author: bricas
Date: 2007-09-13 17:36:06 +0100 (Thu, 13 Sep 2007)
New Revision: 6878
Modified:
trunk/Catalyst-Plugin-Authentication-Store-DBIC/lib/Catalyst/Plugin/Authentication/Store/DBIC.pm
Log:
typo
Modified: trunk/Catalyst-Plugin-Authentication-Store-DBIC/lib/Catalyst/Plugin/Authentication/Store/DBIC.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication-Store-DBIC/lib/Catalyst/Plugin/Authentication/Store/DBIC.pm 2007-09-13 16:35:22 UTC (rev 6877)
+++ trunk/Catalyst-Plugin-Authentication-Store-DBIC/lib/Catalyst/Plugin/Authentication/Store/DBIC.pm 2007-09-13 16:36:06 UTC (rev 6878)
@@ -87,7 +87,7 @@
# if the class existed, check to see if it's a dbic class and return a
# resultset instance
if( $comp || !$@ ){
- if( $class->can('resulset_instance') ) {
+ if( $class->can('resultset_instance') ) {
return $class->resultset_instance;
}
return $class;
@@ -95,7 +95,7 @@
# last case where the model gave us a non-ref which could be an old dbic
# class-data style setup
- if( $model->can('resulset_instance') ) {
+ if( $model->can('resultset_instance') ) {
return $model->resultset_instance;
}
More information about the Catalyst-commits
mailing list