Plugin Directory

Changeset 3103960


Ignore:
Timestamp:
06/18/2024 08:56:13 AM (22 months ago)
Author:
tharkun69
Message:

1.4.4

  • Bugfix: Correct CSV export for court name objects
Location:
occupancy-plan/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • occupancy-plan/trunk/admin/class-occupancy-plan-admin.php

    r3103274 r3103960  
    13741374     *
    13751375     * @since    1.3.6
     1376     *
     1377     * 1.4.4 - Fix: Correct bug for court name export
    13761378     */
    13771379    private function write_block_csv($file, $planID, $delimiter)
     
    14021404            if ($block['court'] > 0)
    14031405            {
    1404                 $block['court'] = $this->blocks->get_court_name($block['court']);
     1406                $courtname = $this->blocks->get_court_name($block['court']);
     1407                if (isset($courtname) == true)
     1408                {
     1409                    $block['court'] = $courtname->name;
     1410                }
    14051411            }
    14061412            fputcsv($file, $block, $delimiter);
  • occupancy-plan/trunk/occupancy-plan.php

    r3103274 r3103960  
    1616 * Plugin URI:        https://www.software-kunze.de/plugins/occupancy-plan/
    1717 * Description:       Management of Occupancy Plans
    18  * Version:           1.4.3
     18 * Version:           1.4.4
    1919 * Author:            Alexander Kunze Software Consulting
    2020 * Author URI:        https://www.software-kunze.de
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define('Occupancy_Plan', '1.4.3');
     38define('Occupancy_Plan', '1.4.4');
    3939
    4040/**
  • occupancy-plan/trunk/readme.txt

    r3103274 r3103960  
    55Requires at least: 4.9
    66Tested up to: 6.5.4
    7 Stable tag: 1.4.3
     7Stable tag: 1.4.4
    88Requires PHP: 5.2.4
    99License: GPLv2 or later
     
    5050== Changelog ==
    5151
     52= 1.4.4 =
     53* Bugfix: Correct CSV export for court name objects
     54
    5255= 1.4.3 =
    5356* Bugfix: Error “An active PHP session was detected”
Note: See TracChangeset for help on using the changeset viewer.