summaryrefslogtreecommitdiff
path: root/includes/view/ShiftTypes_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/ShiftTypes_view.php
parent3f135497711ca316a6f02d1f19aa2211ace9691d (diff)
Add the container class to some views
Diffstat (limited to 'includes/view/ShiftTypes_view.php')
-rw-r--r--includes/view/ShiftTypes_view.php8
1 files changed, 4 insertions, 4 deletions
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);
}