Skip to content

Commit b680184

Browse files
committedJun 5, 2012
Fix #14343: Undefined property: BugnoteData::$bugnote_text_id
The implementation is the one proposed by dregad
1 parent a12d6b7 commit b680184

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎core/bugnote_api.php

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
class BugnoteData {
6565
var $id;
6666
var $bug_id;
67+
var $bugnote_text_id;
6768
var $reporter_id;
6869
var $note;
6970
var $view_state;
@@ -448,6 +449,7 @@ function bugnote_get_all_bugnotes( $p_bug_id ) {
448449

449450
$t_bugnote->id = $row['id'];
450451
$t_bugnote->bug_id = $row['bug_id'];
452+
$t_bugnote->bugnote_text_id = $row['bugnote_text_id'];
451453
$t_bugnote->note = $row['note'];
452454
$t_bugnote->view_state = $row['view_state'];
453455
$t_bugnote->reporter_id = $row['reporter_id'];

0 commit comments

Comments
 (0)
Please sign in to comment.