Typo error. Missing '>'
authortgarip1957 <tgarip1957>
Sat, 20 May 2006 14:36:09 +0000 (14:36 +0000)
committertgarip1957 <tgarip1957>
Sat, 20 May 2006 14:36:09 +0000 (14:36 +0000)
C4/Context.pm

index 8d7b90c..d7cdf9f 100644 (file)
@@ -438,7 +438,7 @@ my ($tcp,$host,$port)=split /:/,$context->{"listen"}->{$server}->{"content"};
 
 retry:
        eval {
-               $Zconn=new ZOOM::Connection($context->config("hostname"),$port,databaseName=$context->{"config"}->{$server},
+               $Zconn=new ZOOM::Connection($context->config("hostname"),$port,databaseName=>$context->{"config"}->{$server},
                preferredRecordSyntax => "USmarc",elementSetName=> "F");
        };
        if ($@){
@@ -467,7 +467,7 @@ my $Zconnauth;
 my ($tcp,$host,$port)=split /:/,$context->{"listen"}->{$server}->{"content"};
 retry:
 eval{
- $Zconnauth=new ZOOM::Connection($context->config("hostname"),$port,databaseName=$context->{"config"}->{$server},
+ $Zconnauth=new ZOOM::Connection($context->config("hostname"),$port,databaseName=>$context->{"config"}->{$server},
                                                user=>$context->{"config"}->{"zebrauser"},
                                                password=>$context->{"config"}->{"zebrapass"},preferredRecordSyntax => "USmarc",elementSetName=> "F");
 };
@@ -826,6 +826,9 @@ Andrew Arensburger <arensb at ooblick dot com>
 
 =cut
 # $Log$
+# Revision 1.41  2006/05/20 14:36:09  tgarip1957
+# Typo error. Missing '>'
+#
 # Revision 1.40  2006/05/20 14:28:02  tgarip1957
 # Adding support to read zebra database name from config files
 #