Browse Source

moving localfiles to tmp

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
3.0.x
Joshua Ferraro 16 years ago
parent
commit
56e102e20e
  1. 4
      C4/AuthoritiesMarc.pm
  2. 0
      tmp/modified_authorities/DO_NOT_REMOVE

4
C4/AuthoritiesMarc.pm

@ -564,13 +564,13 @@ sub ModAuthority {
### they should have a system preference "dontmerge=1" otherwise by default biblios will be updated
### the $merge flag is now depreceated and will be removed at code cleaning
if (C4::Context->preference('dontmerge') ){
# save the file in localfile/modified_authorities
# save the file in tmp/modified_authorities
my $cgidir = C4::Context->intranetdir ."/cgi-bin";
unless (opendir(DIR,"$cgidir")) {
$cgidir = C4::Context->intranetdir."/";
}
my $filename = $cgidir."/localfile/modified_authorities/$authid.authid";
my $filename = $cgidir."/tmp/modified_authorities/$authid.authid";
open AUTH, "> $filename";
print AUTH $authid;
close AUTH;

0
localfile/modified_authorities/DO_NOT_REMOVE → tmp/modified_authorities/DO_NOT_REMOVE

Loading…
Cancel
Save