Skip to content

Commit

Permalink
Bug fix. Hash was keyed incorrectly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Brown committed Feb 22, 2007
1 parent 725b97a commit a34166d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/Messages/DB/MySQL/MySQL.pm
Expand Up @@ -41,7 +41,7 @@ my %descriptions = (
'bvdeliverymodes'
=> sub { $_[0]->sqlSelectAllHashref('code', 'code,name,bitvalue', 'message_deliverymodes') },
'bvmessagecodes'
=> sub { $_[0]->sqlSelectAllHashref('code', 'code,type,delivery_bvalue', 'message_codes', "code >= 0") },
=> sub { $_[0]->sqlSelectAllHashref('type', 'code,type,delivery_bvalue', 'message_codes', "code >= 0") },
);

sub getDescriptions {
Expand Down

0 comments on commit a34166d

Please sign in to comment.