Skip to content

Commit

Permalink
Fix #14343: Undefined property: BugnoteData::$bugnote_text_id
Browse files Browse the repository at this point in the history
The implementation is the one proposed by dregad
  • Loading branch information
rombert committed Jun 5, 2012
1 parent a12d6b7 commit b680184
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/bugnote_api.php
Expand Up @@ -64,6 +64,7 @@
class BugnoteData {
var $id;
var $bug_id;
var $bugnote_text_id;
var $reporter_id;
var $note;
var $view_state;
Expand Down Expand Up @@ -448,6 +449,7 @@ function bugnote_get_all_bugnotes( $p_bug_id ) {

$t_bugnote->id = $row['id'];
$t_bugnote->bug_id = $row['bug_id'];
$t_bugnote->bugnote_text_id = $row['bugnote_text_id'];
$t_bugnote->note = $row['note'];
$t_bugnote->view_state = $row['view_state'];
$t_bugnote->reporter_id = $row['reporter_id'];
Expand Down

0 comments on commit b680184

Please sign in to comment.