Changeset 9397 for branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm
- Timestamp:
- 04/21/08 12:54:46 (6 months ago)
- Location:
- branches/acq-experiment
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/acq-experiment
- Property svnmerge-integrated changed from /trunk:1-9392 to /trunk:1-9396
-
branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm
r9385 r9397 330 330 next unless ( exists $services{$service}->{attrs}->{$_} ); 331 331 $str .= '@attr 1=' . $services{$service}->{attrs}->{$_}->{code} . # add the use attribute 332 ' @attr 4=' . $services{$service}->{attrs}->{$_}->{format} . # add the structure attribute 333 " \"" . $$hash{$_} . "\" "; # add the search term 332 ' @attr 4=' . $services{$service}->{attrs}->{$_}->{format}; # add the structure attribute 333 if (exists $services{$service}->{attrs}->{$_}->{truncation}){ 334 $str .= ' @attr 5=' . $services{$service}->{attrs}->{$_}->{truncation}; 335 } 336 $str .= " \"" . $$hash{$_} . "\" "; # add the search term 334 337 } 335 338 return $str;
