Skip to content

Commit

Permalink
Merge pull request #1041 from rathisekaran/bvl_feedback_fix
Browse files Browse the repository at this point in the history
Fixing issue with BVL Feedback popup
  • Loading branch information
samirdas committed Apr 17, 2015
2 parents d0a5b5a + 1f77d09 commit 9956534
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion htdocs/feedback_bvl_popup.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
'Instrument' => $SuccessIsSet($SI, 'Instrument'),
'CommentID' => $SuccessIsSet($SI, 'CommentID'),
'Visit' => $SuccessIsSet($SI, 'Visit'),
'SessionID' => $SuccessISSet($SI, 'SessionID'),
'SessionID' => $SuccessIsSet($SI, 'SessionID'),
);
$tpl_data['thread_summary_data'][$i] = $row;
}
Expand Down
2 changes: 1 addition & 1 deletion php/libraries/NDB_BVL_Feedback.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ class NDB_BVL_Feedback
if (empty($this->_feedbackObjectInfo['CandID'])) {
$query .= ", f.Test_name as Instrument, ft.CommentID";
}
$query .= " FROM candidate as c,
$query .= " FROM candidate as c
JOIN feedback_bvl_thread as ft ON (c.CandID=ft.CandID)
LEFT JOIN session as s ON (s.ID = ft.SessionID)";
$qparams = array();
Expand Down

0 comments on commit 9956534

Please sign in to comment.