Changeset 2211519
- Timestamp:
- 12/13/2019 11:37:29 AM (6 years ago)
- Location:
- wpsimpletools-upload-limit/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
wpsimpletools-upload-limit.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpsimpletools-upload-limit/trunk/readme.txt
r2197435 r2211519 6 6 Requires PHP: 5.0.0 7 7 Tested up to: 5.3 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 18 18 == Upgrade Notice == 19 19 20 = 1.0. 1=21 1.0. 1 WP 5.3 supported20 = 1.0.2 = 21 1.0.2 Transalation ready 22 22 23 23 == Frequently Asked Questions == … … 32 32 1.0.1 WP 5.3 supported 33 33 34 = 1.0.2 = 35 1.0.2 Transalation ready 36 34 37 == Screenshots == 35 38 1. Admin configuration page -
wpsimpletools-upload-limit/trunk/wpsimpletools-upload-limit.php
r2210187 r2211519 6 6 * Author: WpSimpleTools 7 7 * Author URI: https://profiles.wordpress.org/wpsimpletools/#content-plugins 8 * Version: 1.0. 18 * Version: 1.0.2 9 9 * Plugin Slug: wpsimpletools-upload-limit 10 * Text Domain: wps t_ul10 * Text Domain: wpsimpletools-upload-limit 11 11 */ 12 12 if (! defined('ABSPATH')) { … … 42 42 } else { 43 43 $class = 'notice notice-error'; 44 $message = __('Value is not permitted: ', 'wps t_m');44 $message = __('Value is not permitted: ', 'wpsimpletools-upload-limit'); 45 45 printf('<div class="%1$s"><p>%2$s: \'' . $upload_limit . '\'</p></div>', esc_attr($class), esc_html($message)); 46 46 } … … 58 58 <table class="form-table"> 59 59 <tr valign="top"> 60 <th scope="row"><?php _e('Max upload size', 'wps t_m');?></th>60 <th scope="row"><?php _e('Max upload size', 'wpsimpletools-upload-limit');?></th> 61 61 <td><input type="text" id="upload_limit" name="upload_limit" placeholder="Enter Numeric value" value="<?php echo get_option('max_file_size'); ?>" /> <!-- --> 62 <p class="description" id="tagline-description"><?php _e('Enter upload limit in Bytes (i.e. 67108864 = 64MB)', 'wps t_m');?></p></td>62 <p class="description" id="tagline-description"><?php _e('Enter upload limit in Bytes (i.e. 67108864 = 64MB)', 'wpsimpletools-upload-limit');?></p></td> 63 63 </tr> 64 64 </table>
Note: See TracChangeset
for help on using the changeset viewer.