Changeset 2761976
- Timestamp:
- 07/26/2022 07:09:37 PM (4 years ago)
- Location:
- book-a-room/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
bookaroom-meetings.php (modified) (1 diff)
-
bookaroom.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
book-a-room/trunk/README.txt
r2603645 r2761976 106 106 107 107 == Changelog == 108 = 2.8.4 = 109 * BUGFIX: Fixed the create_function depreciated error. 108 110 109 111 = 2.8.3 = -
book-a-room/trunk/bookaroom-meetings.php
r2603643 r2761976 421 421 if( empty( $statusArr ) or !is_array( $statusArr ) ) { $statusArr = array(); } 422 422 423 array_walk($statusArr, create_function('&$value,$key', '$value = \'"\'.$value.\'"\';')); 423 array_walk($statusArr, function( $value,$key ) { 424 return "'{$value}'"; 425 }); 424 426 425 427 $roomContList = bookaroom_settings_roomConts::getRoomContList(); -
book-a-room/trunk/bookaroom.php
r2603645 r2761976 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. 36 Version: 2.8.4 7 7 Author: Colin Tomele 8 8 Author URI: http://heightslibrary.org
Note: See TracChangeset
for help on using the changeset viewer.