summaryrefslogtreecommitdiff
path: root/includes/sys_menu.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/sys_menu.php')
-rw-r--r--includes/sys_menu.php13
1 files changed, 2 insertions, 11 deletions
diff --git a/includes/sys_menu.php b/includes/sys_menu.php
index 385a6948..863808d2 100644
--- a/includes/sys_menu.php
+++ b/includes/sys_menu.php
@@ -186,7 +186,7 @@ function make_room_navigation($menu)
}
// Get a list of all rooms
- $rooms = Rooms(true);
+ $rooms = Rooms();
$room_menu = [];
if (in_array('admin_rooms', $privileges)) {
$room_menu[] = toolbar_item_link(page_link_to('admin_rooms'), 'list', _('Manage rooms'));
@@ -195,16 +195,7 @@ function make_room_navigation($menu)
$room_menu[] = toolbar_item_divider();
}
foreach ($rooms as $room) {
- if (
- $room['show'] == 'Y' // room is public
- || (
- // room is not public, but user can admin_rooms
- $room['show'] != 'Y'
- && in_array('admin_rooms', $privileges)
- )
- ) {
- $room_menu[] = toolbar_item_link(room_link($room), 'map-marker', $room['Name']);
- }
+ $room_menu[] = toolbar_item_link(room_link($room), 'map-marker', $room['Name']);
}
if (count($room_menu) > 0) {
$menu[] = toolbar_dropdown('map-marker', _('Rooms'), $room_menu);