Changeset 23448 for main/trunk


Ignore:
Timestamp:
2010-12-13T00:58:47+13:00 (13 years ago)
Author:
davidb
Message:

Mistake in handling of infodb_read_entry fixed (now needs to be converted from string into hash array inside this routine).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/dbutil.pm

    r23399 r23448  
    253253  my $infodb_map = {};
    254254  &read_infodb_file($infodb_type, $infodb_file_path, $infodb_map);
    255   return $infodb_map->{$infodb_key};
     255 
     256  my $infodb_rec = &dbutil::convert_infodb_string_to_hash($infodb_map->{$infodb_key});
     257 
     258  return $infodb_rec;
    256259}
    257260
Note: See TracChangeset for help on using the changeset viewer.