Skip to content

Commit

Permalink
Phan fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laemtl committed Nov 22, 2022
1 parent a55c31d commit a55921a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions modules/electrophysiology_browser/php/sessions.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,15 @@ class Sessions extends \NDB_Page
$fileSummary['downloads'] = $this->getDownloadLinks($physioFileObj);
$fileSummary['chunks_urls'] = $physioFileObj->getChunksURLs();

$fileOutput = $db->pselectone(
'SELECT pot.OutputTypeName
FROM physiological_output_type pot
INNER JOIN physiological_file AS pf
ON pf.PhysiologicalFileID=:PFID
AND pf.PhysiologicalOutputTypeID=pot.PhysiologicalOutputTypeID',
['PFID' => $physioFileID]
);

//Get the annotation data
$annotations = new ElectrophysioAnnotations(
intval($physioFileID)
Expand Down

0 comments on commit a55921a

Please sign in to comment.