Skip to content

Commit

Permalink
Fix to display correct return button
Browse files Browse the repository at this point in the history
  • Loading branch information
iliajie committed Jul 8, 2024
1 parent be76795 commit 2b28521
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion phpini/edit_manual.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,11 @@ print &ui_hidden("oneini", $in{'oneini'}),"\n";
print &ui_textarea("data", &read_file_contents_as_user($in{'file'}), 20, 80);
print &ui_form_end([ [ "save", $text{'save'} ] ]);

&ui_print_footer("", $text{'index_return'});
if ($in{'oneini'}) {
&ui_print_footer("list_ini.cgi?file=".&urlize($in{'file'}),
$text{'list_return'});
}
else {
&ui_print_footer("", $text{'index_return'});
}

0 comments on commit 2b28521

Please sign in to comment.