View | Details | Raw Unified | Return to bug 8911
Collapse All | Expand All

(-)a/Makefile.PL (+1 lines)
Lines 266-271 my $target_map = { Link Here
266
  './check_sysprefs.pl'         => 'NONE',
266
  './check_sysprefs.pl'         => 'NONE',
267
  './circ'                      => 'INTRANET_CGI_DIR',
267
  './circ'                      => 'INTRANET_CGI_DIR',
268
  './course_reserves'           => 'INTRANET_CGI_DIR',
268
  './course_reserves'           => 'INTRANET_CGI_DIR',
269
  './docs/history.txt'          => { target => 'DOC_DIR', trimdir => -1 },
269
  './offline_circ'		=> 'INTRANET_CGI_DIR',
270
  './offline_circ'		=> 'INTRANET_CGI_DIR',
270
  './edithelp.pl'               => 'INTRANET_CGI_DIR',
271
  './edithelp.pl'               => 'INTRANET_CGI_DIR',
271
  './etc'                       => { target => 'KOHA_CONF_DIR', trimdir => -1 },
272
  './etc'                       => { target => 'KOHA_CONF_DIR', trimdir => -1 },
(-)a/about.pl (-2 / +2 lines)
Lines 148-155 $template->param( table => $table ); Link Here
148
## Koha time line code
148
## Koha time line code
149
149
150
#get file location
150
#get file location
151
my $dir = C4::Context->config('intranetdir');
151
my $docdir = C4::Context->config('docdir');
152
open( my $file, "<", "$dir" . "/docs/history.txt" );
152
open( my $file, "<", "$docdir" . "/history.txt" );
153
my $i = 0;
153
my $i = 0;
154
154
155
my @rows2 = ();
155
my @rows2 = ();
(-)a/debian/templates/koha-conf-site.xml.in (+1 lines)
Lines 265-270 Link Here
265
 <intrahtdocs>/usr/share/koha/intranet/htdocs/intranet-tmpl</intrahtdocs>
265
 <intrahtdocs>/usr/share/koha/intranet/htdocs/intranet-tmpl</intrahtdocs>
266
 <includes>/usr/share/koha/intranet/htdocs/intranet-tmpl/prog/en/includes/</includes>
266
 <includes>/usr/share/koha/intranet/htdocs/intranet-tmpl/prog/en/includes/</includes>
267
 <logdir>/var/log/koha/__KOHASITE__</logdir>
267
 <logdir>/var/log/koha/__KOHASITE__</logdir>
268
 <docdir>/usr/share/doc/koha-common</docdir>
268
 <backupdir>/var/spool/koha/__KOHASITE__</backupdir>
269
 <backupdir>/var/spool/koha/__KOHASITE__</backupdir>
269
 <!-- Enable the two following to allow superlibrarians to download
270
 <!-- Enable the two following to allow superlibrarians to download
270
      database and configuration dumps (respectively) from the Export
271
      database and configuration dumps (respectively) from the Export
(-)a/etc/koha-conf.xml (-1 / +1 lines)
Lines 284-289 __PAZPAR2_TOGGLE_XML_POST__ Link Here
284
 <intrahtdocs>__INTRANET_TMPL_DIR__</intrahtdocs>
284
 <intrahtdocs>__INTRANET_TMPL_DIR__</intrahtdocs>
285
 <includes>__INTRANET_TMPL_DIR__/prog/en/includes/</includes>
285
 <includes>__INTRANET_TMPL_DIR__/prog/en/includes/</includes>
286
 <logdir>__LOG_DIR__</logdir>
286
 <logdir>__LOG_DIR__</logdir>
287
 <docdir>__DOC_DIR__</docdir>
287
 <backupdir>__BACKUP_DIR__</backupdir>
288
 <backupdir>__BACKUP_DIR__</backupdir>
288
 <!-- Enable the two following to allow superlibrarians to download
289
 <!-- Enable the two following to allow superlibrarians to download
289
      database and configuration dumps (respectively) from the Export
290
      database and configuration dumps (respectively) from the Export
290
- 

Return to bug 8911