Created
November 24, 2011 22:31
-
-
Save leftdevel/1392436 to your computer and use it in GitHub Desktop.
execute_report
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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