File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - Fix current script state after initial scripts creation in managesieve_kolab_master mode
6+
7+ ## Release 1.5.9
8+
59- Fix regression where printing/scaling/rotating image attachments was broken (#9571 )
610- Fix regression where HTML messages were displayed unstyled (#9586 )
711
Original file line number Diff line number Diff line change 1+ - Fix current script state after initial scripts creation in managesieve_kolab_master mode
2+
13* version 9.4 [2021-06-06]
24-----------------------------------------------------------
35- Add ability to remove 'redirect' option from UI (#7922)
Original file line number Diff line number Diff line change @@ -248,14 +248,14 @@ protected function load_script($script_name = null)
248248 if ($ script_name === null || $ script_name === '' ) {
249249 // get (first) active script
250250 if (!empty ($ this ->active )) {
251- $ script_name = $ this ->active [0 ];
251+ $ script_name = $ this ->active [0 ];
252252 }
253- else if ($ list ) {
253+ else if (! empty ( $ list) ) {
254254 $ script_name = $ list [0 ];
255255 }
256256 else {
257257 // if script does not exist create one with default content
258- $ this ->create_default_script ();
258+ $ script_name = $ this ->create_default_script ();
259259 }
260260 }
261261
You can’t perform that action at this time.
0 commit comments