Skip to content

Commit

Permalink
Fixed some variables resulting in incorrect display of text
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@12 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Dec 4, 2000
1 parent 271a071 commit d79969a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -14,6 +14,7 @@ To Do:
XX.XX.2000 - 0.10.2

* Fixed Reporter Field on update page
* Fixed variable error preventing Bugnote addition

12.03.2000 - 0.10.1

Expand Down
6 changes: 3 additions & 3 deletions bug_update_advanced_page.php3
Expand Up @@ -75,9 +75,9 @@
extract( $row, EXTR_PREFIX_ALL, "v2" );

$v_summary = string_unsafe( $v_summary );
$v_description = string_unsafe( $v_description );
$v_steps_to_reproduce = string_unsafe( $v_steps_to_reproduce );
$v_additional_information = string_unsafe( $v_additional_information );
$v2_description = string_unsafe( $v2_description );
$v2_steps_to_reproduce = string_unsafe( $v2_steps_to_reproduce );
$v2_additional_information = string_unsafe( $v2_additional_information );
$v_date_submitted = date( "m-d H:i", sql_to_unix_time( $v_date_submitted ) );
$v_last_updated = date( "m-d H:i", sql_to_unix_time( $v_last_updated ) );
?>
Expand Down
6 changes: 3 additions & 3 deletions bug_update_page.php3
Expand Up @@ -75,9 +75,9 @@
extract( $row, EXTR_PREFIX_ALL, "v2" );

$v_summary = string_unsafe( $v_summary );
$v_description = string_unsafe( $v_description );
$v_steps_to_reproduce = string_unsafe( $v_steps_to_reproduce );
$v_additional_information = string_unsafe( $v_additional_information );
$v2_description = string_unsafe( $v2_description );
$v2_steps_to_reproduce = string_unsafe( $v2_steps_to_reproduce );
$v2_additional_information = string_unsafe( $v2_additional_information );
$v_date_submitted = date( "m-d H:i", sql_to_unix_time( $v_date_submitted ) );
$v_last_updated = date( "m-d H:i", sql_to_unix_time( $v_last_updated ) );
?>
Expand Down
6 changes: 3 additions & 3 deletions bug_view_advanced_page.php3
Expand Up @@ -57,9 +57,9 @@
extract( $row, EXTR_PREFIX_ALL, "v2" );

$v_summary = string_unsafe( $v_summary );
$v_description = string_unsafe( $v_description );
$v_steps_to_reproduce = string_unsafe( $v_steps_to_reproduce );
$v_additional_information = string_unsafe( $v_additional_information );
$v2_description = string_unsafe( $v2_description );
$v2_steps_to_reproduce = string_unsafe( $v2_steps_to_reproduce );
$v2_additional_information = string_unsafe( $v2_additional_information );
$v_date_submitted = date( "m-d H:i", $v_date_submitted );
$v_last_updated = date( "m-d H:i", $v_last_updated );
?>
Expand Down
8 changes: 4 additions & 4 deletions bug_view_page.php3
Expand Up @@ -52,7 +52,7 @@
if ( $result ) {
$row = mysql_fetch_array( $result );
$t2_handler_name = $row["username"];
$t2_handler_email = $row["email"];
$t2_handler_email = $row["email"];
}

$query = "SELECT *
Expand All @@ -65,9 +65,9 @@
extract( $row, EXTR_PREFIX_ALL, "v2" );

$v_summary = string_unsafe( $v_summary );
$v_description = string_unsafe( $v_description );
$v_steps_to_reproduce = string_unsafe( $v_steps_to_reproduce );
$v_additional_information = string_unsafe( $v_additional_information );
$v2_description = string_unsafe( $v2_description );
$v2_steps_to_reproduce = string_unsafe( $v2_steps_to_reproduce );
$v2_additional_information = string_unsafe( $v2_additional_information );
$v_date_submitted = date( "m-d H:i", sql_to_unix_time( $v_date_submitted ) );
$v_last_updated = date( "m-d H:i", sql_to_unix_time( $v_last_updated ) );
?>
Expand Down

0 comments on commit d79969a

Please sign in to comment.