[interchange] Fix typo.

Peter Ajamian <[email protected]> Sat, 14 Mar 2015 13:12:06 +0000
Newsgroups gmane.comp.web.interchange.cvs
Message-ID <[email protected]>
commit 32c2f30e06d911f8113ac00e53ded8c0c61b208c
Author: Peter Ajamian <[email protected]>
Date:   Sun Mar 15 02:11:29 2015 +1300

    Fix typo.

 lib/Vend/Table/DBI.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/lib/Vend/Table/DBI.pm b/lib/Vend/Table/DBI.pm
index 71f30b4..f159043 100644
--- a/lib/Vend/Table/DBI.pm
+++ b/lib/Vend/Table/DBI.pm
@@ -554,7 +554,7 @@ sub create {
 	}
 	elsif(! $key_index_found) {
 	    my $ind_name = "${tablename}_${key}";
-	    $ind_name = $db->quote_identifer($ind_name) if $config->{QUOTE_IDENTIFIERS};
+	    $ind_name = $db->quote_identifier($ind_name) if $config->{QUOTE_IDENTIFIERS};
 		$db->do("create index $ind_name on $qtable ($qkey)")
 			or ::logError("table %s index failed: %s" , $tablename, $DBI::errstr);
 		$db->commit() if $config->{Transactions};