Changeset 3076337
- Timestamp:
- 04/24/2024 10:43:19 AM (2 years ago)
- Location:
- occupancy-plan/trunk
- Files:
-
- 5 edited
-
admin/controller/class-occupancy-plan-blocks.php (modified) (1 diff)
-
admin/partials/occupancy-plan-blocks.php (modified) (1 diff)
-
admin/partials/occupancy-plan-plan.php (modified) (2 diffs)
-
occupancy-plan.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
occupancy-plan/trunk/admin/controller/class-occupancy-plan-blocks.php
r3068888 r3076337 99 99 public function action_block() 100 100 { 101 error_log(print_r($_POST, true));102 101 if (isset($_POST['occupancy-plan-save'])) 103 102 { -
occupancy-plan/trunk/admin/partials/occupancy-plan-blocks.php
r3068435 r3076337 21 21 if ((isset( $_GET['export'])) && (isset($_GET['planID']))) 22 22 { 23 $filename = $this-> get_plan_name(intval($_GET['planID'])) . '.csv';23 $filename = $this->plans->get_plan_name(intval($_GET['planID'])) . '.csv'; 24 24 $now = gmdate('D, d M Y H:i:s') . ' GMT'; 25 25 -
occupancy-plan/trunk/admin/partials/occupancy-plan-plan.php
r3068435 r3076337 20 20 if ((isset($_GET['export'])) && (isset($_GET['planID']))) 21 21 { 22 $filename = $this-> get_plan_name(intval($_GET['planID'])) . (('blocks' == $_GET['export'])? '-Blocks' : '') . '.csv';22 $filename = $this->plans->get_plan_name(intval($_GET['planID'])) . (('blocks' == $_GET['export'])? '-Blocks' : '') . '.csv'; 23 23 $now = gmdate('D, d M Y H:i:s') . ' GMT'; 24 24 … … 83 83 84 84 $_SESSION["op_msgid"] = 0; 85 $lastpage = $_SESSION["op_lastpage"];85 $lastpage = (isset($_SESSION["op_lastpage"]))? $_SESSION["op_lastpage"] : 'plan'; 86 86 $_SESSION["op_lastpage"] = 'plan'; 87 87 $_SESSION["op_blockid"] = 0; -
occupancy-plan/trunk/occupancy-plan.php
r3068888 r3076337 16 16 * Plugin URI: https://www.software-kunze.de/plugins/occupancy-plan/ 17 17 * Description: Management of Occupancy Plans 18 * Version: 1.4. 118 * Version: 1.4.2 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');38 define('Occupancy_Plan', '1.4.2'); 39 39 40 40 /** -
occupancy-plan/trunk/readme.txt
r3068888 r3076337 5 5 Requires at least: 4.9 6 6 Tested up to: 6.5.2 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 1.4.2 = 53 * Bugfix: Use plans controller for CSV export 54 52 55 = 1.4.1 = 53 56 * Bugfix: Frontend add and delete booking
Note: See TracChangeset
for help on using the changeset viewer.