Skip to content

Instantly share code, notes, and snippets.

@leftdevel
Created November 24, 2011 22:31
Show Gist options
  • Save leftdevel/1392436 to your computer and use it in GitHub Desktop.
Save leftdevel/1392436 to your computer and use it in GitHub Desktop.
execute_report
<?php
//linea 321
$links = '';
//NicaStaff was here. Some code added from here to line 337
$allInOneParams='';
foreach($recordings as $position => $recording)
{
$links .= '<a class="recording" href=\'recordings.php?id='. $id . '&recordingid=' . $position . '\'>'.$recording.'</a><br/>';
$allInOneParams.="recs[]=".$position."&";
}
$allInOneParams.= "id=".$id;
$link.='<a class="recording" href=\'recordings.php?'.$allInOneParams. '\'>Download them all</a><br/>';
$rows[$k][$label]= $links;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment