Plugin Directory

Changeset 2761976


Ignore:
Timestamp:
07/26/2022 07:09:37 PM (4 years ago)
Author:
chuhpl
Message:

BUGFIX: Fixed the create_function depreciated error.

Location:
book-a-room/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • book-a-room/trunk/README.txt

    r2603645 r2761976  
    106106
    107107== Changelog ==
     108= 2.8.4 =
     109* BUGFIX: Fixed the create_function depreciated error.
    108110
    109111= 2.8.3 =
  • book-a-room/trunk/bookaroom-meetings.php

    r2603643 r2761976  
    421421        if( empty( $statusArr ) or !is_array( $statusArr ) ) { $statusArr = array(); }
    422422       
    423         array_walk($statusArr, create_function('&$value,$key', '$value = \'"\'.$value.\'"\';'));
     423        array_walk($statusArr, function( $value,$key ) {
     424            return "'{$value}'";
     425        });
    424426       
    425427        $roomContList = bookaroom_settings_roomConts::getRoomContList();
  • book-a-room/trunk/bookaroom.php

    r2603645 r2761976  
    44Plugin URI: https://wordpress.org/plugins/book-a-room/
    55Description: Book a Room is a library oriented meeting room management and event calendar system.
    6 Version: 2.8.3
     6Version: 2.8.4
    77Author: Colin Tomele
    88Author URI: http://heightslibrary.org
Note: See TracChangeset for help on using the changeset viewer.