diff options
author | msquare <msquare@notrademark.de> | 2016-11-11 17:07:40 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2016-11-11 17:07:40 +0100 |
commit | 5f2871538a44e5f878ee99316322c5fe4ffb4f36 (patch) | |
tree | 8f12880a01592c67be218dc077e61536564ba305 /includes | |
parent | 03c9d1ef5dfcb6022e88e150630a6213b1c1d8c5 (diff) |
fix css problem with rooms table
Diffstat (limited to 'includes')
-rw-r--r-- | includes/pages/admin_rooms.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pages/admin_rooms.php b/includes/pages/admin_rooms.php index 7a0f7a31..129ed423 100644 --- a/includes/pages/admin_rooms.php +++ b/includes/pages/admin_rooms.php @@ -12,7 +12,7 @@ function admin_rooms() { 'name' => Room_name_render($room), 'from_pentabarf' => $room['FromPentabarf'] == 'Y' ? '✓' : '', 'public' => $room['show'] == 'Y' ? '✓' : '', - 'actions' => buttons([ + 'actions' => table_buttons([ button(page_link_to('admin_rooms') . '&show=edit&id=' . $room['RID'], _("edit"), 'btn-xs'), button(page_link_to('admin_rooms') . '&show=delete&id=' . $room['RID'], _("delete"), 'btn-xs') ]) |