From ea034ecec665aff04fd74c81e11c34000a9b9492 Mon Sep 17 00:00:00 2001 From: Michael Weimann Date: Sat, 14 Dec 2019 10:35:42 +0100 Subject: Add the container class to some views --- includes/view/AngelTypes_view.php | 8 ++++---- includes/view/Questions_view.php | 2 +- includes/view/Rooms_view.php | 2 +- includes/view/ShiftTypes_view.php | 8 ++++---- includes/view/UserAngelTypes_view.php | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) (limited to 'includes/view') diff --git a/includes/view/AngelTypes_view.php b/includes/view/AngelTypes_view.php index 9f9bd736..0eb8ef86 100644 --- a/includes/view/AngelTypes_view.php +++ b/includes/view/AngelTypes_view.php @@ -64,7 +64,7 @@ function AngelType_delete_view($angeltype) form_submit('delete', glyph('ok') . __('delete'), 'btn-danger', false), ]) ]), - ]); + ], true); } /** @@ -360,7 +360,7 @@ function AngelType_view( $shiftCalendarRenderer ) ], $tab) - ]); + ], true); } /** @@ -507,7 +507,7 @@ function AngelTypes_list_view($angeltypes, $admin_angeltypes) 'membership' => __('Membership'), 'actions' => '' ], $angeltypes) - ]); + ], true); } /** @@ -595,5 +595,5 @@ function AngelTypes_about_view($angeltypes, $user_logged_in) $content[] = AngelTypes_about_view_angeltype($angeltype); } - return page_with_title(__('Teams/Job description'), $content); + return page_with_title(__('Teams/Job description'), $content, true); } diff --git a/includes/view/Questions_view.php b/includes/view/Questions_view.php index a4c3a452..61f9f312 100644 --- a/includes/view/Questions_view.php +++ b/includes/view/Questions_view.php @@ -61,5 +61,5 @@ function Questions_view(array $open_questions, array $answered_questions, $ask_a form_textarea('question', __('Your Question:'), ''), form_submit('submit', __('Save')) ], $ask_action) - ]); + ], true); } diff --git a/includes/view/Rooms_view.php b/includes/view/Rooms_view.php index 4ea78e86..51e651ee 100644 --- a/includes/view/Rooms_view.php +++ b/includes/view/Rooms_view.php @@ -54,7 +54,7 @@ function Room_view($room, ShiftsFilterRenderer $shiftsFilterRenderer, ShiftCalen $assignNotice, $description, tabs($tabs, $selected_tab) - ]); + ], true); } /** diff --git a/includes/view/ShiftTypes_view.php b/includes/view/ShiftTypes_view.php index 634f9760..3e10be29 100644 --- a/includes/view/ShiftTypes_view.php +++ b/includes/view/ShiftTypes_view.php @@ -31,7 +31,7 @@ function ShiftType_delete_view($shifttype) ), ]), ]), - ]); + ], true); } /** @@ -63,7 +63,7 @@ function ShiftType_edit_view($name, $angeltype_id, $angeltypes, $description, $s form_info('', __('Please use markdown for the description.')), form_submit('submit', __('Save')) ]) - ]); + ], true); } /** @@ -99,7 +99,7 @@ function ShiftType_view($shifttype, $angeltype) ]), heading(__('Description'), 2), $parsedown->parse($shifttype['description']) - ]); + ], true); } /** @@ -140,5 +140,5 @@ function ShiftTypes_list_view($shifttypes) 'name' => __('Name'), 'actions' => '' ], $shifttypes) - ]); + ], true); } diff --git a/includes/view/UserAngelTypes_view.php b/includes/view/UserAngelTypes_view.php index d4d8aab6..8cba2060 100644 --- a/includes/view/UserAngelTypes_view.php +++ b/includes/view/UserAngelTypes_view.php @@ -123,7 +123,7 @@ function UserAngelType_delete_view($user_angeltype, $user, $angeltype) form_submit('delete', glyph('ok') . __('yes'), 'btn-primary', false), ]), ], page_link_to('user_angeltypes', ['action' => 'delete', 'user_angeltype_id' => $user_angeltype['id']])), - ]); + ], true); } /** -- cgit v1.2.3-54-g00ecf