projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
32a4630
)
Callback now gets args
Matt S Trout [Wed, 19 Jul 2006 22:29:59 +0000 (22:29 +0000)]
lib/DBIx/Class/Storage/Statistics.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Storage/Statistics.pm
b/lib/DBIx/Class/Storage/Statistics.pm
index
60b59cd
..
d795490
100644
(file)
--- a/
lib/DBIx/Class/Storage/Statistics.pm
+++ b/
lib/DBIx/Class/Storage/Statistics.pm
@@
-87,7
+87,7
@@
sub query_start {
if(defined($self->callback())) {
$string =~ m/^(\w+)/;
- $self->callback()->($1, $string);
+ $self->callback()->($1, $string, @_);
return;
}