Changeset 3294467
- Timestamp:
- 05/16/2025 01:50:27 AM (11 months ago)
- Location:
- wp-downloadmanager/trunk
- Files:
-
- 3 edited
-
download-options.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
wp-downloadmanager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-downloadmanager/trunk/download-options.php
r2673301 r3294467 38 38 } 39 39 $download_options = array('use_filename' => $download_options_use_filename, 'rss_sortby' => $download_options_rss_sortby, 'rss_limit' => $download_options_rss_limit); 40 41 // Validate 42 if ( substr( $download_path, 0, strlen( WP_CONTENT_DIR ) ) !== WP_CONTENT_DIR ) { 43 $download_path = WP_CONTENT_DIR; 44 } 45 40 46 $update_download_queries = array(); 41 47 $update_download_text = array(); … … 100 106 <tr valign="top"> 101 107 <th><?php _e('Download Path:', 'wp-downloadmanager'); ?></th> 102 <td><input type="text" name="download_path" value="<?php echo esc_attr( removeslashes( get_option( 'download_path' ) ) ); ?>" size="50" dir="ltr" /><br /><?php _e('The absolute path to the directory where all the files are stored (without trailing slash).', 'wp-downloadmanager'); ?>< /td>108 <td><input type="text" name="download_path" value="<?php echo esc_attr( removeslashes( get_option( 'download_path' ) ) ); ?>" size="50" dir="ltr" /><br /><?php _e('The absolute path to the directory where all the files are stored (without trailing slash).', 'wp-downloadmanager'); ?><br /><?php printf( __('Due to security reasons, the path has to start inside your wp-content folder, which is %s', 'wp-downloadmanager' ), WP_CONTENT_DIR ); ?></td> 103 109 </tr> 104 110 <tr valign="top"> -
wp-downloadmanager/trunk/readme.txt
r3254388 r3294467 4 4 Tags: file, files, download, downloads, manager, downloadmanager, downloadsmanager, filemanager, filesmanager 5 5 Requires at least: 4.0 6 Tested up to: 6. 77 Stable tag: 1.68.1 06 Tested up to: 6.8 7 Stable tag: 1.68.11 8 8 License: GPLv2 9 9 … … 44 44 1. The widget name is `Downloads`. 45 45 46 ### Build Status47 [](https://travis-ci.org/lesterchan/wp-downloadmanager)48 49 46 ### Development 50 47 * [https://github.com/lesterchan/wp-downloadmanager](https://github.com/lesterchan/wp-downloadmanager "https://github.com/lesterchan/wp-downloadmanager") … … 62 59 63 60 ## Changelog 61 ### Version 1.68.11 62 * FIXED: Ensure that Download Path starts only with your wp-content folder for additional security. 63 64 ### Version 1.68.10 64 65 * FIXED: Allow form in Download Page Footer template. 65 66 -
wp-downloadmanager/trunk/wp-downloadmanager.php
r3254388 r3294467 4 4 Plugin URI: https://lesterchan.net/portfolio/programming/php/ 5 5 Description: Adds a simple download manager to your WordPress blog. 6 Version: 1.68.1 06 Version: 1.68.11 7 7 Author: Lester 'GaMerZ' Chan 8 8 Author URI: https://lesterchan.net … … 31 31 32 32 ### Version 33 define( 'WP_DOWNLOADMANAGER_VERSION', '1.68.1 0' );33 define( 'WP_DOWNLOADMANAGER_VERSION', '1.68.11' ); 34 34 35 35 ### Create text domain for translations
Note: See TracChangeset
for help on using the changeset viewer.