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

(-)a/C4/Creators/Layout.pm (-1 / +1 lines)
Lines 80-86 sub new { Link Here
80
            font            =>      'TR',
80
            font            =>      'TR',
81
            font_size       =>      3,
81
            font_size       =>      3,
82
            scale_width     =>      0.8,
82
            scale_width     =>      0.8,
83
            scale_height    =>      0.02,
83
            scale_height    =>      0.01,
84
            callnum_split   =>      0,
84
            callnum_split   =>      0,
85
            text_justify    =>      'L',
85
            text_justify    =>      'L',
86
            format_string   =>      join(', ', @{ PRESET_FIELDS() }),
86
            format_string   =>      join(', ', @{ PRESET_FIELDS() }),
(-)a/installer/data/mysql/kohastructure.sql (-1 / +2 lines)
Lines 2329-2334 CREATE TABLE `creator_layouts` ( Link Here
2329
  `oblique_title` int(1) DEFAULT 1,
2329
  `oblique_title` int(1) DEFAULT 1,
2330
  `font` char(10) NOT NULL DEFAULT 'TR',
2330
  `font` char(10) NOT NULL DEFAULT 'TR',
2331
  `font_size` int(4) NOT NULL DEFAULT 10,
2331
  `font_size` int(4) NOT NULL DEFAULT 10,
2332
  `scale_width` decimal(28,6) NOT NULL DEFAULT 0.08,
2333
  `scale_height` decimal(28,6) NOT NULL DEFAULT 0.01,
2332
  `units` char(20) NOT NULL DEFAULT 'POINT',
2334
  `units` char(20) NOT NULL DEFAULT 'POINT',
2333
  `callnum_split` int(1) DEFAULT 0,
2335
  `callnum_split` int(1) DEFAULT 0,
2334
  `text_justify` char(1) NOT NULL DEFAULT 'L',
2336
  `text_justify` char(1) NOT NULL DEFAULT 'L',
2335
- 

Return to bug 10762