Changeset 3103960
- Timestamp:
- 06/18/2024 08:56:13 AM (22 months ago)
- Location:
- occupancy-plan/trunk
- Files:
-
- 3 edited
-
admin/class-occupancy-plan-admin.php (modified) (2 diffs)
-
occupancy-plan.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
occupancy-plan/trunk/admin/class-occupancy-plan-admin.php
r3103274 r3103960 1374 1374 * 1375 1375 * @since 1.3.6 1376 * 1377 * 1.4.4 - Fix: Correct bug for court name export 1376 1378 */ 1377 1379 private function write_block_csv($file, $planID, $delimiter) … … 1402 1404 if ($block['court'] > 0) 1403 1405 { 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 } 1405 1411 } 1406 1412 fputcsv($file, $block, $delimiter); -
occupancy-plan/trunk/occupancy-plan.php
r3103274 r3103960 16 16 * Plugin URI: https://www.software-kunze.de/plugins/occupancy-plan/ 17 17 * Description: Management of Occupancy Plans 18 * Version: 1.4. 318 * Version: 1.4.4 19 19 * Author: Alexander Kunze Software Consulting 20 20 * Author URI: https://www.software-kunze.de … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define('Occupancy_Plan', '1.4. 3');38 define('Occupancy_Plan', '1.4.4'); 39 39 40 40 /** -
occupancy-plan/trunk/readme.txt
r3103274 r3103960 5 5 Requires at least: 4.9 6 6 Tested up to: 6.5.4 7 Stable tag: 1.4. 37 Stable tag: 1.4.4 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 1.4.4 = 53 * Bugfix: Correct CSV export for court name objects 54 52 55 = 1.4.3 = 53 56 * Bugfix: Error An active PHP session was detected
Note: See TracChangeset
for help on using the changeset viewer.