Ignore:
Timestamp:
2010-12-21T22:41:21+13:00 (13 years ago)
Author:
davidb
Message:

Additional info added error message that ensures GLIServer.jar file exists.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/cgi-bin/talkback-progressbar.pl

    r23517 r23518  
    232232
    233233    if (!-f $java_classpath) {
    234     $gsdl_cgi->generate_error("$0:\nFailed to find $java_classpath\n");
     234    my $progname = $0;
     235    $progname =~ s/^.*[\/\\]//;
     236    my $mess = "$progname:\nFailed to find $java_classpath\n";
     237    $gsdl_cgi->generate_error($mess);
    235238    }
    236239
Note: See TracChangeset for help on using the changeset viewer.