Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7268918

Browse files
MatthieuRdregad
authored andcommittedDec 12, 2012
Manage columns include: rename form and remove multipart encoding
The form in manage_columns_inc.php was apparently copy-pasted from bug_report_page.php; it was named "report_bug_form" and an optional multipart encoding if file upload is enabled, which does not make sense in this context. This code-cleanup commit removes the enctype and renames the form. Fixes #15280 Signed-off-by: Damien Regad <damien.regad@merckgroup.com>
1 parent b094035 commit 7268918

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎manage_columns_inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
?>
6565

6666
<div align="center">
67-
<form name="report_bug_form" method="post" <?php if ( file_allow_bug_upload() ) { echo 'enctype="multipart/form-data"'; } ?> action="manage_config_columns_set.php">
67+
<form name="manage-columns-form" method="post" action="manage_config_columns_set.php">
6868
<?php echo form_security_field( 'manage_config_columns_set' ) ?>
6969
<table class="width50" cellspacing="1">
7070

0 commit comments

Comments
 (0)
Please sign in to comment.