Changeset 3383502
- Timestamp:
- 10/23/2025 02:13:42 PM (5 months ago)
- Location:
- occupancy-plan/trunk
- Files:
-
- 1 deleted
- 7 edited
-
admin/class-occupancy-plan-admin.php (modified) (2 diffs)
-
admin/css/images/ui-icons_ffffff_256x240.png (deleted)
-
admin/partials/occupancy-plan-block-exception.php (modified) (1 diff)
-
admin/partials/occupancy-plan-block.php (modified) (1 diff)
-
includes/class-occupancy-plan-main.php (modified) (2 diffs)
-
occupancy-plan.php (modified) (3 diffs)
-
public/css/occupancy-plan-print.css (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
occupancy-plan/trunk/admin/class-occupancy-plan-admin.php
r3291549 r3383502 1434 1434 * 1.4.10 - Changed to session_status check 1435 1435 * 1.4.11 - Set of 'read_and_close' to 'true' 1436 * 1.4.12 - Set of 'read_and_close' to 'true' deleted 1436 1437 */ 1437 1438 public function start_session() 1438 1439 { 1439 if (session_status() == PHP_SESSION_NONE) {1440 session_start( ['read_and_close' => true ]);1440 if (session_status() !== PHP_SESSION_ACTIVE) { 1441 session_start(); 1441 1442 } 1442 1443 } … … 1447 1448 * @since 1.4 1448 1449 * 1449 * 1.4.6 - Fix: Check if PHP session is active 1450 * 1.4.6 - Fix: Check if PHP session is active 1450 1451 */ 1451 1452 public function end_session() -
occupancy-plan/trunk/admin/partials/occupancy-plan-block-exception.php
r3068435 r3383502 17 17 wp_die(); 18 18 } 19 20 // error_log(print_r($_SESSION, true)); 19 21 20 22 if (isset($_GET['mode'])) -
occupancy-plan/trunk/admin/partials/occupancy-plan-block.php
r3291549 r3383502 18 18 wp_die(); 19 19 } 20 21 // error_log(print_r($_SESSION, true)); 20 22 21 23 if (isset($_GET['mode'])) -
occupancy-plan/trunk/includes/class-occupancy-plan-main.php
r3068888 r3383502 112 112 * @since 1.0.0 113 113 * @access private 114 * 115 * 1.4.12 - Change from 'plugins_loaded' to 'init' action 114 116 */ 115 117 private function set_locale() 116 118 { 117 add_action(' plugins_loaded', array($this, 'load_plugin_textdomain'));119 add_action('init', array($this, 'load_plugin_textdomain')); 118 120 } 119 121 … … 236 238 public function run() 237 239 { 238 $this->set_locale();239 240 $this->define_admin_hooks(); 240 241 $this->define_public_hooks(); 241 242 $this->define_dashboard_widget(); 243 $this->set_locale(); 242 244 } 243 245 -
occupancy-plan/trunk/occupancy-plan.php
r3291549 r3383502 16 16 * Plugin URI: https://www.software-kunze.de/plugins/occupancy-plan/ 17 17 * Description: Management of Occupancy Plans 18 * Version: 1.4.1 118 * Version: 1.4.12 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 1');38 define('Occupancy_Plan', '1.4.12'); 39 39 40 40 /** … … 89 89 * 90 90 * @since 1.0.0 91 * 92 * 1.4.12 - $description deleted 91 93 */ 92 94 function run_occupancy_plan() 93 95 { 94 $description = __('Management of Occupancy Plans', 'occupancy-plan');95 96 $plugin = new Occupancy_Plan_Main(); 96 97 $plugin->run(); -
occupancy-plan/trunk/public/css/occupancy-plan-print.css
r2657250 r3383502 73 73 width: auto; 74 74 /*padding: 0px 0px 0px 0px !important;*/ 75 padding: 5px !important;75 padding: 5px 0px !important; 76 76 border: 1px dotted black !important; 77 77 } -
occupancy-plan/trunk/readme.txt
r3291549 r3383502 4 4 Tags: Occupancy Plan, Belegungsplan, Booking, Buchungen, Hallenbelegung, Reservierung 5 5 Requires at least: 4.9 6 Tested up to: 6.8. 17 Stable tag: 1.4.1 16 Tested up to: 6.8.3 7 Stable tag: 1.4.12 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 1.4.12 = 53 * Fix: Select correct block after save block exception 54 * Fix: Fix of load_textdomain error 55 * Change from 'plugins_loaded' to 'init' action 56 52 57 = 1.4.11 = 53 58 * Fix: Save correct interval value form backend booking
Note: See TracChangeset
for help on using the changeset viewer.