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

(-)a/about.pl (+6 lines)
Lines 209-214 if ( ! defined C4::Context->config('log4perl_conf') ) { Link Here
209
    }
209
    }
210
}
210
}
211
211
212
if ( ! defined C4::Context->config('lockdir') ) {
213
    push @xml_config_warnings, {
214
        error => 'lockdir_entry_missing'
215
    }
216
}
217
212
if ( ! defined C4::Context->config('upload_path') ) {
218
if ( ! defined C4::Context->config('upload_path') ) {
213
    if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) {
219
    if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) {
214
        # OPACBaseURL seems to be set
220
        # OPACBaseURL seems to be set
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1 / +7 lines)
Lines 359-364 Link Here
359
                        add it, pointing to the log4perl.conf file for your Koha instance.
359
                        add it, pointing to the log4perl.conf file for your Koha instance.
360
                    </td>
360
                    </td>
361
                </tr>
361
                </tr>
362
                [% ELSIF config_entry.error == 'lockdir_entry_missing' %]
363
                <tr>
364
                    <th scope="row"><b>Warning</b></th>
365
                    <td>You are missing the &lt;lockdir&gt; entry in your koha-conf.xml file. Please
366
                        add it, pointing to your Koha instance's lock dir.
367
                    </td>
368
                </tr>
362
                [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
369
                [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
363
                <tr>
370
                <tr>
364
                    <th scope="row"><b>Warning</b></th>
371
                    <th scope="row"><b>Warning</b></th>
365
- 

Return to bug 25109