From 202d882bd65a50d69ac750e9ccd8667c1479dd09 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Wed, 4 Jul 2018 18:04:20 +1000 Subject: [PATCH] tweak to text --- booking.module | 4 ++-- booking.rooms_admin.inc | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/booking.module b/booking.module index 4ff008f..a900b26 100644 --- a/booking.module +++ b/booking.module @@ -683,8 +683,8 @@ function booking_menu() { ); $items['admin/booking/rooms/report'] = array( - 'title' => 'View All Room Allocations', - 'description' => 'View All Room Allocations', + 'title' => 'View Room Mate Preferences and Room Allocations', + 'description' => 'View Room Mate Preferences and Room Allocations', 'page callback' => 'booking_roomallocations_view_summary', 'access arguments' => array("view room allocations"), 'type' => MENU_LOCAL_ACTION, diff --git a/booking.rooms_admin.inc b/booking.rooms_admin.inc index 0790d08..25be374 100644 --- a/booking.rooms_admin.inc +++ b/booking.rooms_admin.inc @@ -33,6 +33,7 @@ function booking_room_view_summary() { //output everything $output .= t("

!event Room Locations

", array('!event' => $event->booking_eventname)); + $output .= t("

Use the link above to view room mate preferences and room allocations.

"); $output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => $attributes)); return $output;