File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -157,11 +157,14 @@ public static function folder_form($attrib)
157157 'value ' => $ select ->show ($ selected ),
158158 ];
159159
160- $ up = new html_button (['id ' => 'move-folder-up ' , 'class ' => 'move-folder-up ' ])-> show ( $ rcmail -> gettext ( ' reorder_folder_up ' ) );
161- $ down = new html_button (['id ' => 'move-folder-down ' , 'class ' => 'move-folder-down ' ])-> show ( $ rcmail -> gettext ( ' reorder_folder_down ' ) );
160+ $ upBtn = new html_button (['id ' => 'move-folder-up ' , 'class ' => 'move-folder-up ' ]);
161+ $ downBtn = new html_button (['id ' => 'move-folder-down ' , 'class ' => 'move-folder-down ' ]);
162162 $ form ['props ' ]['fieldsets ' ]['location ' ]['content ' ]['order ' ] = [
163163 'label ' => $ rcmail ->gettext ('reorder_folder ' ),
164- 'value ' => html::div ([], [$ up , $ down ]),
164+ 'value ' => html::div ([], [
165+ $ upBtn ->show ($ rcmail ->gettext ('reorder_folder_up ' )),
166+ $ downBtn ->show ($ rcmail ->gettext ('reorder_folder_down ' )),
167+ ]),
165168 ];
166169 }
167170
You can’t perform that action at this time.
0 commit comments