Changeset 3376388
- Timestamp:
- 10/10/2025 04:06:02 PM (6 months ago)
- Location:
- hdforms
- Files:
-
- 22 added
- 3 edited
-
tags/1.6.1 (added)
-
tags/1.6.1/includes (added)
-
tags/1.6.1/includes/about.php (added)
-
tags/1.6.1/includes/css (added)
-
tags/1.6.1/includes/css/admin_style.css (added)
-
tags/1.6.1/includes/css/builder.css (added)
-
tags/1.6.1/includes/css/style-full.css (added)
-
tags/1.6.1/includes/css/style-min.css (added)
-
tags/1.6.1/includes/functions.php (added)
-
tags/1.6.1/includes/js (added)
-
tags/1.6.1/includes/js/block.js (added)
-
tags/1.6.1/includes/js/builder.js (added)
-
tags/1.6.1/includes/js/script.js (added)
-
tags/1.6.1/includes/js/sortable.js (added)
-
tags/1.6.1/includes/meta.php (added)
-
tags/1.6.1/includes/post-type.php (added)
-
tags/1.6.1/includes/sun (added)
-
tags/1.6.1/includes/sun/suneditor.min.css (added)
-
tags/1.6.1/includes/sun/suneditor.min.js (added)
-
tags/1.6.1/includes/template.php (added)
-
tags/1.6.1/index.php (added)
-
tags/1.6.1/readme.txt (added)
-
trunk/includes/functions.php (modified) (1 diff)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hdforms/trunk/includes/functions.php
r3312721 r3376388 728 728 $upload_dir = wp_upload_dir(); 729 729 $upload_dir = $upload_dir['basedir'] . '/hdforms/'; 730 // make sure the start of the dir is the hdf upload dir 731 if (substr($dir, 0, strlen($upload_dir)) == $upload_dir) { 730 731 $real_path = realpath($upload_dir) . $dir; 732 733 // Check if the actual parsed path is still within the HDForms upload dir 734 if ($real_path && strpos($real_path, $upload_dir) === 0) { 732 735 return true; 733 736 } else { -
hdforms/trunk/index.php
r3312721 r3376388 6 6 * Author: Harmonic Design 7 7 * Author URI: https://harmonicdesign.ca/ 8 * Version: 1.6 8 * Version: 1.6.1 9 9 */ 10 10 … … 14 14 15 15 if (!defined('HDF_PLUGIN_VERSION')) { 16 define('HDF_PLUGIN_VERSION', 2025 0618);16 define('HDF_PLUGIN_VERSION', 20251010); 17 17 } 18 18 -
hdforms/trunk/readme.txt
r3312721 r3376388 3 3 Tags: hdforms, form, form builder, contact, contact form, hdf, hd form, hdform, contact builder, contact form builder, send contact form 4 4 Requires at least: 5.2.0 5 Tested up to: 6. 7.26 Stable tag: 1.6 5 Tested up to: 6.8.3 6 Stable tag: 1.6.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 99 99 100 100 == Changelog == 101 = 1.6.1 = 102 * Oct 10 2025 103 * Security update for file uploads 104 101 105 = 1.6 = 102 106 * June 16 2025 … … 152 156 153 157 == Upgrade Notice == 154 * Critical Bug Fix158 * Security update for file uploads
Note: See TracChangeset
for help on using the changeset viewer.