Changeset 3291549
- Timestamp:
- 05/12/2025 06:13:32 AM (11 months ago)
- Location:
- occupancy-plan/trunk
- Files:
-
- 6 edited
-
admin/class-occupancy-plan-admin.php (modified) (1 diff)
-
admin/controller/class-occupancy-plan-blocks.php (modified) (1 diff)
-
admin/partials/occupancy-plan-block.php (modified) (1 diff)
-
admin/partials/occupancy-plan-plan.php (modified) (1 diff)
-
occupancy-plan.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
occupancy-plan/trunk/admin/class-occupancy-plan-admin.php
r3208007 r3291549 1433 1433 * 1.4.3 - Fix: Error An active PHP session was detected 1434 1434 * 1.4.10 - Changed to session_status check 1435 * 1.4.11 - Set of 'read_and_close' to 'true' 1435 1436 */ 1436 1437 public function start_session() 1437 1438 { 1438 1439 if (session_status() == PHP_SESSION_NONE) { 1439 session_start( );1440 session_start(['read_and_close' => true ] ); 1440 1441 } 1441 1442 } -
occupancy-plan/trunk/admin/controller/class-occupancy-plan-blocks.php
r3208007 r3291549 306 306 public function internal_save_block() 307 307 { 308 // error_log(print_r($_POST, true)); 309 308 310 $interval = isset($_POST['interval'])? intval($_POST['interval']) : 1; 309 311 if ($interval == 1) -
occupancy-plan/trunk/admin/partials/occupancy-plan-block.php
r3208007 r3291549 262 262 <div class="op-admin-form-col-4 op-intervalinfo"> 263 263 <div> 264 <input type="hidden" name="interval" value="<?php echo intval($block->interval) ?>" />265 264 <?php if (isset($mode)) { ?> 266 265 <select class="op-admin-input-80 op-intervalinfoselect-3" name="intervalinfo-3" <?php if ($block->interval != 3) { echo 'style="display:none;"'; } ?> > -
occupancy-plan/trunk/admin/partials/occupancy-plan-plan.php
r3208007 r3291549 542 542 </div> 543 543 <div class="op-admin-form-col-8"> 544 <input class="op-admin-input-100" type="checkbox" name="showcheckbox" value="1" <?php if ((isset($plan->showcheckbox)) && ($plan->showcheckbox == 1 )) echo 'checked'; ?> <?php echo (isset($mode))? '':'disabled'?> />544 <input class="op-admin-input-100" type="checkbox" name="showcheckbox" value="1" <?php if ((isset($plan->showcheckbox)) && ($plan->showcheckbox == 1 )) echo 'checked'; ?> <?php echo (isset($mode))? '':'disabled'?> /> 545 545 <span class="op-help-tip" data-tooltip="<?php echo __('This flag shows a confirmation check box in front of the information text', 'occupancy-plan');?>">?</span> 546 546 </div> -
occupancy-plan/trunk/occupancy-plan.php
r3208007 r3291549 16 16 * Plugin URI: https://www.software-kunze.de/plugins/occupancy-plan/ 17 17 * Description: Management of Occupancy Plans 18 * Version: 1.4.1 018 * Version: 1.4.11 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.1 0');38 define('Occupancy_Plan', '1.4.11'); 39 39 40 40 /** -
occupancy-plan/trunk/readme.txt
r3208007 r3291549 4 4 Tags: Occupancy Plan, Belegungsplan, Booking, Buchungen, Hallenbelegung, Reservierung 5 5 Requires at least: 4.9 6 Tested up to: 6. 7.17 Stable tag: 1.4.1 06 Tested up to: 6.8.1 7 Stable tag: 1.4.11 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 1.4.11 = 53 * Fix: Save correct interval value form backend booking 54 * Test with WordPress version 6.8.1 55 52 56 = 1.4.10 = 53 57 * Fix: Correct backend session handling
Note: See TracChangeset
for help on using the changeset viewer.