Plugin Directory

Changeset 2213495


Ignore:
Timestamp:
12/17/2019 09:41:00 AM (6 years ago)
Author:
wordpresssimpletools
Message:

rebranding

Location:
wpsimpletools-upload-limit/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpsimpletools-upload-limit/trunk/readme.txt

    r2212836 r2213495  
    1 === WpSimpleTools Upload Limit ===
     1=== Manage Upload Limit ===
    22Contributors: WpSimpleTools
    33Tags: upload limit, upload size, max upload size
     
    66Requires PHP: 5.0.0
    77Tested up to: 5.3.1
    8 Stable tag: 1.0.3
     8Stable tag: 1.0.4
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1818== Upgrade Notice ==
    1919
    20 = 1.0.3 =
    21 1.0.3 Minor bugfix
     20= 1.0.4 =
     211.0.4 Rebranding
    2222
    2323== Frequently Asked Questions ==
     
    2828= 1.0.0 =
    29291.0.0 First release
    30 
    3130= 1.0.1 =
    32311.0.1 WP 5.3 supported
    33 
    3432= 1.0.2 =
    35331.0.2 Transalation ready
    36 
    3734= 1.0.3 =
    38351.0.3 Minor bugfix
     36= 1.0.4 =
     371.0.4 Rebranding
    3938
    4039== Screenshots ==
  • wpsimpletools-upload-limit/trunk/wpsimpletools-upload-limit.php

    r2212836 r2213495  
    66 * Author: WpSimpleTools
    77 * Author URI: https://profiles.wordpress.org/wpsimpletools/#content-plugins
    8  * Version: 1.0.3
     8 * Version: 1.0.4
    99 * Plugin Slug: wpsimpletools-upload-limit
    1010 * Text Domain: wpsimpletools-upload-limit
     
    2626
    2727<div class="wrap">
    28     <h2>WpSimpleTools Upload Limit</h2>
     28    <h2><?php _e('WpSimpleTools Upload Limit', 'wpsimpletools-upload-limit');?></h2>
    2929
    3030
     
    3535        if (ctype_digit($upload_limit)) {
    3636            update_option('max_file_size', $upload_limit);
    37             // echo "<script>window.location='" . $_SERVER["REQUEST_URI"] . "'</script>";
    38             // OK
    3937            $class = 'notice notice-success is-dismissible';
    4038            $message = __('Setting saved!', 'wpsimpletools-upload-limit');
     
    4644        }
    4745    } else {
    48         ?>  <p>Current limit is <?php echo wpst_ul_human_filesize(get_option('max_file_size')); ?></p>
     46        ?>  <p><?php _e('Current limit is ', 'wpsimpletools-upload-limit');?><?php echo wpst_ul_human_filesize(get_option('max_file_size')); ?></p>
    4947    <?php
    5048    }
Note: See TracChangeset for help on using the changeset viewer.