summaryrefslogtreecommitdiff
path: root/includes/pages/admin_rooms.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/pages/admin_rooms.php
parent3f135497711ca316a6f02d1f19aa2211ace9691d (diff)
Add the container class to some views
Diffstat (limited to 'includes/pages/admin_rooms.php')
-rw-r--r--includes/pages/admin_rooms.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/pages/admin_rooms.php b/includes/pages/admin_rooms.php
index 733e56af..348a5b6d 100644
--- a/includes/pages/admin_rooms.php
+++ b/includes/pages/admin_rooms.php
@@ -170,7 +170,7 @@ function admin_rooms()
]),
form_submit('submit', __('Save'))
])
- ]);
+ ], true);
} elseif ($request->input('show') == 'delete') {
if ($request->hasPostData('ack')) {
$shifts = Shifts_by_room($room_id);
@@ -195,7 +195,7 @@ function admin_rooms()
form([
form_submit('ack', __('Delete'), 'delete btn-danger'),
], page_link_to('admin_rooms', ['show' => 'delete', 'id' => $room_id])),
- ]);
+ ], true);
}
}
@@ -209,5 +209,5 @@ function admin_rooms()
'map_url' => __('Map'),
'actions' => ''
], $rooms)
- ]);
+ ], true);
}