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

(-)a/installer/data/mysql/updatedatabase.pl (-2 / +4 lines)
Lines 22576-22590 if( CheckVersion( $DBversion ) ) { Link Here
22576
$DBversion = '20.06.00.023';
22576
$DBversion = '20.06.00.023';
22577
if( CheckVersion( $DBversion ) ) {
22577
if( CheckVersion( $DBversion ) ) {
22578
22578
22579
    my $QuoteOfTheDay = C4::Context->preference('QuoteOfTheDay');
22579
    $dbh->do( q|
22580
    $dbh->do( q|
22580
        UPDATE systempreferences
22581
        UPDATE systempreferences
22581
        SET value = '',
22582
        SET options = 'intranet,opac',
22582
            options = 'intranet,opac',
22583
            explanation = 'Enable or disable display of Quote of the Day on the OPAC and staff interface home page',
22583
            explanation = 'Enable or disable display of Quote of the Day on the OPAC and staff interface home page',
22584
            type = 'multiple'
22584
            type = 'multiple'
22585
        WHERE variable = 'QuoteOfTheDay'
22585
        WHERE variable = 'QuoteOfTheDay'
22586
    | );
22586
    | );
22587
22587
22588
    C4::Context->set_preference('QuoteOfTheDay', $QuoteOfTheDay ? 'opac' : '');
22589
22588
    NewVersion( $DBversion, 16371, "Quote of the Day (QOTD) for the staff interface " );
22590
    NewVersion( $DBversion, 16371, "Quote of the Day (QOTD) for the staff interface " );
22589
}
22591
}
22590
22592
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-2 / +1 lines)
Lines 257-263 Link Here
257
                                                                [% END %]
257
                                                                [% END %]
258
                                                            </select>
258
                                                            </select>
259
                                                            [% IF at_least_one_library_not_available_for_pickup %]
259
                                                            [% IF at_least_one_library_not_available_for_pickup %]
260
                                                                <br>Note: Library policy does not allow hold/pickup of an item available locally. Please come to the library to retrieve these items
260
                                                                <br><span id="not_available">Note: Library policy does not allow hold/pickup of an item available locally. Please come to the library to retrieve these items</span>
261
                                                            [% END %]
261
                                                            [% END %]
262
                                                        [% END # / UNLESS bibitemloo.holdable %]
262
                                                        [% END # / UNLESS bibitemloo.holdable %]
263
                                                    </li>
263
                                                    </li>
264
- 

Return to bug 26184