Changeset 2762593
- Timestamp:
- 07/27/2022 07:44:56 PM (4 years ago)
- Location:
- book-a-room/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (1 diff)
-
bookaroom-meetings-customerSearch.php (modified) (2 diffs)
-
bookaroom-meetings-public.php (modified) (2 diffs)
-
bookaroom.php (modified) (1 diff)
-
sharedFunctions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
book-a-room/trunk/README.txt
r2762587 r2762593 106 106 107 107 == Changelog == 108 = 2.8.6 = 109 * BUGFIX: Changed some functions to be PHP8 compatible. 110 108 111 = 2.8.5 = 109 112 * BUGFIX: Added missing column -
book-a-room/trunk/bookaroom-meetings-customerSearch.php
r1728894 r2762593 28 28 } else { 29 29 # get search values 30 $roomInfo = getRoomInfo( $externals['roomID'], self::$branchList, self::$roomContList, true, true );30 $roomInfo = getRoomInfo( self::$branchList, self::$roomContList, $externals['roomID'], true, true ); 31 31 $results = self::searchRegistrations( $roomInfo, $externals['startDate'], $externals['endDate'], $externals['searchName'], $externals['searchEmail'], $externals['searchPhone'] ); 32 32 self::showSearchForm( $externals, NULL, NULL, $results ); … … 287 287 # form fields 288 288 { 289 $roomInfo = getRoomInfo( $externals['roomID'], self::$branchList, self::$roomContList, true, true );289 $roomInfo = getRoomInfo( self::$branchList, self::$roomContList, $externals['roomID'], true, true ); 290 290 291 291 require BOOKAROOM_PATH . 'templates/events/customerSearch.php'; -
book-a-room/trunk/bookaroom-meetings-public.php
r2603643 r2762593 61 61 } else { 62 62 self::sendAlertEmail( $externals, $amenityList, $roomContList, $branchList ); 63 self::showForm_insertNewRequest( $externals, NULL,$cityList );63 self::showForm_insertNewRequest( $externals, $cityList ); 64 64 return self::sendCustomerReceiptEmail( $externals, $amenityList, $roomContList, $branchList ); 65 65 } … … 551 551 } 552 552 553 public static function showForm_insertNewRequest( $externals, $ event = NULL, $cityList)553 public static function showForm_insertNewRequest( $externals, $cityList, $event = NULL ) 554 554 { 555 555 global $wpdb; -
book-a-room/trunk/bookaroom.php
r2762587 r2762593 4 4 Plugin URI: https://wordpress.org/plugins/book-a-room/ 5 5 Description: Book a Room is a library oriented meeting room management and event calendar system. 6 Version: 2.8. 56 Version: 2.8.6 7 7 Author: Colin Tomele 8 8 Author URI: http://heightslibrary.org -
book-a-room/trunk/sharedFunctions.php
r2603643 r2762593 18 18 } 19 19 20 function getRoomInfo( $ cur_roomID = NULL, $branchList, $roomContList, $selectBranch = FALSE, $noLocation = FALSE )20 function getRoomInfo( $branchList, $roomContList, $cur_roomID = NULL, $selectBranch = FALSE, $noLocation = FALSE ) 21 21 { 22 22 $cur_branchID = $cur_noloc_branchID = NULL;
Note: See TracChangeset
for help on using the changeset viewer.