Plugin Directory

Changeset 3131845


Ignore:
Timestamp:
08/06/2024 09:43:15 PM (20 months ago)
Author:
Ickata
Message:

Fixed a warning when WP_DEBUG mode is set

Location:
image-editor-by-pixo
Files:
2 edited
8 copied

Legend:

Unmodified
Added
Removed
  • image-editor-by-pixo/tags/2.3.4/pixo.php

    r3113637 r3131845  
    44Plugin URI: https://pixoeditor.com
    55Description: Provides Pixo as a replacement of the default image editor in your WordPress installation, as well as integrates to your website front-end
    6 Version: 2.3.3
     6Version: 2.3.4
    77*/
    88
     
    328328         </p>
    329329         <h2>Register now</h2>
    330          <p><input type="email" name="email" placeholder="Your email" value="<?php echo esc_attr(sanitize_text_field($_POST['email'])); ?>" autocomplete="false" /></p>
    331          <p><input type="password" name="password" placeholder="Desired password" value="<?php echo esc_attr(sanitize_text_field($_POST['password'])); ?>" autocomplete="false" /></p>
     330         <p><input type="email" name="email" placeholder="Your email" value="<?php echo isset($_POST['email']) ? esc_attr(sanitize_text_field($_POST['email'])) : ''; ?>" autocomplete="false" /></p>
     331         <p><input type="password" name="password" placeholder="Desired password" value="<?php echo isset($_POST['password']) ? esc_attr(sanitize_text_field($_POST['password'])) : ''; ?>" autocomplete="false" /></p>
    332332         <p>
    333333            On successful registration you will get a confirmation email at the address you typed above.
  • image-editor-by-pixo/tags/2.3.4/readme.txt

    r3122194 r3131845  
    55Requires at least: 3.5
    66Tested up to: 6.6
    7 Stable tag: 2.3.3
     7Stable tag: 2.3.4
    88Requires PHP: 5.2
    99License: GPLv2 or later
     
    104104
    105105== Changelog ==
     106= 2.3.4 =
     107* Fixed a warning when WP_DEBUG mode is set (it was breaking the sign up form)
     108
    106109= 2.3.3 =
    107110* Fixed inability to batch/multiple edit more than ~20 media files
  • image-editor-by-pixo/trunk/pixo.php

    r3113637 r3131845  
    44Plugin URI: https://pixoeditor.com
    55Description: Provides Pixo as a replacement of the default image editor in your WordPress installation, as well as integrates to your website front-end
    6 Version: 2.3.3
     6Version: 2.3.4
    77*/
    88
     
    328328         </p>
    329329         <h2>Register now</h2>
    330          <p><input type="email" name="email" placeholder="Your email" value="<?php echo esc_attr(sanitize_text_field($_POST['email'])); ?>" autocomplete="false" /></p>
    331          <p><input type="password" name="password" placeholder="Desired password" value="<?php echo esc_attr(sanitize_text_field($_POST['password'])); ?>" autocomplete="false" /></p>
     330         <p><input type="email" name="email" placeholder="Your email" value="<?php echo isset($_POST['email']) ? esc_attr(sanitize_text_field($_POST['email'])) : ''; ?>" autocomplete="false" /></p>
     331         <p><input type="password" name="password" placeholder="Desired password" value="<?php echo isset($_POST['password']) ? esc_attr(sanitize_text_field($_POST['password'])) : ''; ?>" autocomplete="false" /></p>
    332332         <p>
    333333            On successful registration you will get a confirmation email at the address you typed above.
  • image-editor-by-pixo/trunk/readme.txt

    r3122194 r3131845  
    55Requires at least: 3.5
    66Tested up to: 6.6
    7 Stable tag: 2.3.3
     7Stable tag: 2.3.4
    88Requires PHP: 5.2
    99License: GPLv2 or later
     
    104104
    105105== Changelog ==
     106= 2.3.4 =
     107* Fixed a warning when WP_DEBUG mode is set (it was breaking the sign up form)
     108
    106109= 2.3.3 =
    107110* Fixed inability to batch/multiple edit more than ~20 media files
Note: See TracChangeset for help on using the changeset viewer.