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

(-)a/installer/data/mysql/atomicupdate/bug_19263.perl (+10 lines)
Line 0 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    # insert the authorized_value_category for CONTROL_NUM_SEQUENCE
4
    $dbh->do( "INSERT IGNORE INTO authorised_value_categories values ('CONTROL_NUM_SEQUENCE');" );
5
6
7
    # Always end with this (adjust the bug info)
8
    SetVersion( $DBversion );
9
    print "Upgrade to $DBversion done (Bug 19263 - Advanced Editor - Rancor - Add auto control number (001) widget)\n";
10
}
(-)a/koha-tmpl/intranet-tmpl/prog/css/cateditor.css (-1 / +2 lines)
Lines 137-142 body { Link Here
137
#editor .subfield-widget button {
137
#editor .subfield-widget button {
138
    font-family: inherit;
138
    font-family: inherit;
139
    font-size: inherit;
139
    font-size: inherit;
140
    height: 1.5em;
141
    line-height: 1em;
140
    margin-left: 5px;
142
    margin-left: 5px;
141
    vertical-align: middle;
143
    vertical-align: middle;
142
}
144
}
143
- 

Return to bug 19263