Skip to content

Commit

Permalink
Merge pull request #2916 from drshawnkwang/sak_fix-consentprefs-colum…
Browse files Browse the repository at this point in the history
…nview

web: add consent preferences to column view of project preferences page.
  • Loading branch information
Rytiss committed Feb 1, 2019
2 parents d25338f + 9811fe9 commit dc21dbd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions html/inc/prefs_project.inc
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ function print_prefs_display_project($user, $columns=false) {
start_table();
row_heading(tra("Combined preferences").$switch_link);
prefs_show_privacy($user, true);
prefs_show_consent($user, true);
venue_show($user);
row_top(tra("Project specific settings"));
prefs_show_project($project_prefs, true);
Expand Down
3 changes: 3 additions & 0 deletions html/inc/prefs_util.inc
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ class PREF_CONSENT extends PREF {
} else {
echo "<td>---</td>";
}
foreach ($venues as $v) {
echo "<td>--</td>";
}
echo "</tr>\n";
}

Expand Down

0 comments on commit dc21dbd

Please sign in to comment.