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

(-)a/about.pl (+8 lines)
Lines 214-219 if ( ! defined C4::Context->config('lockdir') ) { Link Here
214
        error => 'lockdir_entry_missing'
214
        error => 'lockdir_entry_missing'
215
    }
215
    }
216
}
216
}
217
else {
218
    unless ( -w C4::Context->config('lockdir') ) {
219
        push @xml_config_warnings, {
220
            error   => 'lockdir_not_writable',
221
            lockdir => C4::Context->config('lockdir')
222
        }
223
    }
224
}
217
225
218
if ( ! defined C4::Context->config('upload_path') ) {
226
if ( ! defined C4::Context->config('upload_path') ) {
219
    if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) {
227
    if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1 / +7 lines)
Lines 366-371 Link Here
366
                        add it, pointing to your Koha instance's lock dir.
366
                        add it, pointing to your Koha instance's lock dir.
367
                    </td>
367
                    </td>
368
                </tr>
368
                </tr>
369
                [% ELSIF config_entry.error == 'lockdir_not_writable' %]
370
                <tr>
371
                    <th scope="row"><b>Warning</b></th>
372
                    <td>The configured &lt;lockdir&gt; entry in your koha-conf.xml file points to a
373
                        non-writable directory ([% config_entry.lockdir | html %]).
374
                    </td>
375
                </tr>
369
                [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
376
                [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
370
                <tr>
377
                <tr>
371
                    <th scope="row"><b>Warning</b></th>
378
                    <th scope="row"><b>Warning</b></th>
372
- 

Return to bug 25109