Skip to content
Permalink
Browse files Browse the repository at this point in the history
Update conference_profile_params.php
  • Loading branch information
markjcrane committed Aug 10, 2019
1 parent cd4632b commit 021ff8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/conference_profiles/conference_profile_params.php
Expand Up @@ -73,7 +73,7 @@
echo th_order_by('profile_param_description', $text['label-profile_param_description'], $order_by, $order);
echo "<td class='list_control_icons'>";
if (permission_exists('conference_profile_param_add')) {
echo "<a href='conference_profile_param_edit.php?conference_profile_uuid=".$_GET['id']."' alt='".$text['button-add']."'>$v_link_label_add</a>";
echo "<a href='conference_profile_param_edit.php?conference_profile_uuid=".escape($_GET['id'])."' alt='".$text['button-add']."'>$v_link_label_add</a>";
}
else {
echo "&nbsp;\n";
Expand Down Expand Up @@ -113,7 +113,7 @@
echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
echo " <td class='list_control_icons'>";
if (permission_exists('conference_profile_param_add')) {
echo "<a href='conference_profile_param_edit.php?conference_profile_uuid=".$_GET['id']."' alt='".$text['button-add']."'>$v_link_label_add</a>";
echo "<a href='conference_profile_param_edit.php?conference_profile_uuid=".escape($_GET['id'])."' alt='".$text['button-add']."'>$v_link_label_add</a>";
}
else {
echo "&nbsp;";
Expand Down

0 comments on commit 021ff8f

Please sign in to comment.