summaryrefslogtreecommitdiff
path: root/includes/view/AngelTypes_view.php
diff options
context:
space:
mode:
authorMichael Weimann <mail@michael-weimann.eu>2019-12-14 10:35:42 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2019-12-19 19:33:52 +0100
commitea034ecec665aff04fd74c81e11c34000a9b9492 (patch)
tree9484cab331663e5eab9de0559cf77bdcf0145b22 /includes/view/AngelTypes_view.php
parent3f135497711ca316a6f02d1f19aa2211ace9691d (diff)
Add the container class to some views
Diffstat (limited to 'includes/view/AngelTypes_view.php')
-rw-r--r--includes/view/AngelTypes_view.php8
1 files changed, 4 insertions, 4 deletions
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);
}