From: Dan Kubb Date: Wed, 28 Sep 2005 10:38:49 +0000 (+0000) Subject: fixed bug where class_resolver was mistakenly clobbered in compose_connection X-Git-Tag: v0.05005~205 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5f581489d3f5a8f90c57db16045978fe9c7c8a7d;p=dbsrgits%2FDBIx-Class.git fixed bug where class_resolver was mistakenly clobbered in compose_connection --- diff --git a/lib/DBIx/Class/Schema.pm b/lib/DBIx/Class/Schema.pm index d704d82..032ac81 100644 --- a/lib/DBIx/Class/Schema.pm +++ b/lib/DBIx/Class/Schema.pm @@ -100,7 +100,7 @@ sub compose_connection { return $map{$to_map}; }; } - $conn_class->class_resolver($target); + $conn_class->class_resolver->class($target); } sub setup_connection_class {