Fix config colors not saved, closes #127

This commit is contained in:
Bartek Fabiszewski 2020-07-06 09:30:50 +02:00
parent c728c74707
commit c3d764343c

View File

@ -43,11 +43,11 @@ $data = [
'stroke_weight' => uUtils::postInt('strokeWeight'), 'stroke_weight' => uUtils::postInt('strokeWeight'),
'stroke_color' => uUtils::postString('strokeColor'), 'stroke_color' => uUtils::postString('strokeColor'),
'stroke_opacity' => uUtils::postFloat('strokeOpacity'), 'stroke_opacity' => uUtils::postFloat('strokeOpacity'),
'color_normal' => uUtils::postInt('colorNormal'), 'color_normal' => uUtils::postString('colorNormal'),
'color_start' => uUtils::postInt('colorStart'), 'color_start' => uUtils::postString('colorStart'),
'color_stop' => uUtils::postInt('colorStop'), 'color_stop' => uUtils::postString('colorStop'),
'color_extra' => uUtils::postInt('colorExtra'), 'color_extra' => uUtils::postString('colorExtra'),
'color_hilite' => uUtils::postInt('colorHilite'), 'color_hilite' => uUtils::postString('colorHilite'),
'upload_maxsize' => uUtils::postInt('uploadMaxSize') 'upload_maxsize' => uUtils::postInt('uploadMaxSize')
]; ];