Yep, Nick, that worked, so here are the steps I took in case other beginner/hacks like me want to make the change:
usage.phpReplaced line 211
print_reservation_data($type, $link, $resNo++, $start_date, $end_date, $created, $modified, $starttime, $endtime, $totTime, $rs['resid'], $rs['fname'], $rs['lname'], $rs['name'], $rs['memberid'], $rs['scheduletitle'], $rs['summary']);
templates/usage.template.phpReplaced line 452 with
function print_reservation_data($type, &$link, $resNo, $start_date, $end_date, $created, $modified, $starttime, $endtime, $totTime, $resid, $fname, $lname, $name, $memberid, $schedule, $summary) {
Replaced lines 368 -378 with
<tr class="rowHeaders" align="center">
<td width="4%">#</td>
<td width="9%"><?php echo translate('Start Date')?></td>
<td width="9%"><?php echo translate('End Date')?></td>
<td width="10%"><?php echo translate('Created')?></td>
<td width="10%"><?php echo translate('Last Modified')?></td>
<td width="10%"><?php echo translate('Start Time')?></td>
<td width="10%"><?php echo translate('End Time')?></td>
<td width="20%"><?php echo translate('Summary')?></td>
<td width="8%"><?php echo translate('Manage')?></td>
<td width="10%"><?php echo translate('Total Time')?></td>
</tr>
Added
. '<td>' . $summary . "</td>\n";
to HTML print function on line 469
. $summary . "\n";
to line 489 to txt print function on line 491
. "\t<summary>$summary</summary>\r\n"
to xml print function on line 507
. "\"$summary\"\r\n";
to csv print function line 524
And now for another couple questions:
1 - Are there already hacks that would enable a user to export the txt or csv outputs to Excel?
2 - Is there any way in the "Select Search Criteria" function to add a radio button to the "summary" criteria line that would allow the serach to exclude records with certain text ( i.e. right now you can choose - "contains" or "begins with" but what about adding a button for "does not contain")