Add conference moderators to conference session details.

This commit is contained in:
Mark Crane
2012-10-16 06:06:19 +00:00
parent d85d9f2b24
commit 68d02aac1f

View File

@@ -113,6 +113,7 @@ require_once "includes/paging.php";
//echo th_order_by('uuid', 'UUID', $order_by, $order);
echo th_order_by('caller_id_name', 'Caller ID Name', $order_by, $order);
echo th_order_by('caller_id_number', 'Caller ID Number', $order_by, $order);
echo th_order_by('moderator', 'Moderator', $order_by, $order);
echo th_order_by('network_addr', 'Network Address', $order_by, $order);
echo "<th>Time</th>\n";
echo th_order_by('start_epoch', 'Start', $order_by, $order);
@@ -139,6 +140,7 @@ require_once "includes/paging.php";
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['conference_session_uuid']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['caller_id_name']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['caller_id_number']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['moderator']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['network_addr']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$time_difference."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$start_date."&nbsp;</td>\n";