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 0858282

Browse files
committedSep 12, 2011
Merge commit 'release-1.2.8' into oracle
Conflicts: config_defaults_inc.php
2 parents 45172b7 + e679a1c commit 0858282

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+685
-231
lines changed
 

‎billing_inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
# CSRF protection not required here - form does not result in modifications
7676
?>
7777

78-
<form method="post" action="<?php echo form_action_self() ?>">
78+
<form method="post" action="<?php echo string_attribute( form_action_self() ) ?>">
7979
<input type="hidden" name="id" value="<?php echo isset( $f_bug_id ) ? $f_bug_id : 0 ?>" />
8080
<table border="0" class="width100" cellspacing="0">
8181
<tr>

‎bug_actiongroup_ext.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@
3535
$f_action = gpc_get_string( 'action' );
3636
$f_bug_arr = gpc_get_int_array( 'bug_arr', array() );
3737

38-
$t_action_include_file = 'bug_actiongroup_' . $f_action . '_inc.php';
3938
$t_form_name = 'bug_actiongroup_' . $f_action;
4039

4140
form_security_validate( $t_form_name );
4241

43-
require_once( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . $t_action_include_file );
42+
bug_group_action_init( $f_action );
4443

4544
# group bugs by project
4645
$t_projects_bugs = array();

0 commit comments

Comments
 (0)
Please sign in to comment.