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 1d75494

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

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
@@ -48,6 +48,7 @@
4848
class BugnoteData {
4949
var $id;
5050
var $bug_id;
51+
var $bugnote_text_id;
5152
var $reporter_id;
5253
var $note;
5354
var $view_state;
@@ -438,6 +439,7 @@ function bugnote_get_all_bugnotes( $p_bug_id ) {
438439

439440
$t_bugnote->id = $row['id'];
440441
$t_bugnote->bug_id = $row['bug_id'];
442+
$t_bugnote->bugnote_text_id = $row['bugnote_text_id'];
441443
$t_bugnote->note = $row['note'];
442444
$t_bugnote->view_state = $row['view_state'];
443445
$t_bugnote->reporter_id = $row['reporter_id'];

0 commit comments

Comments
 (0)
Please sign in to comment.