Changeset 3131845
- Timestamp:
- 08/06/2024 09:43:15 PM (20 months ago)
- Location:
- image-editor-by-pixo
- Files:
-
- 2 edited
- 8 copied
-
tags/2.3.4 (copied) (copied from image-editor-by-pixo/trunk)
-
tags/2.3.4/admin.css (copied) (copied from image-editor-by-pixo/trunk/admin.css)
-
tags/2.3.4/admin.js (copied) (copied from image-editor-by-pixo/trunk/admin.js)
-
tags/2.3.4/frontend.php (copied) (copied from image-editor-by-pixo/trunk/frontend.php)
-
tags/2.3.4/get-custom-stickers.php (copied) (copied from image-editor-by-pixo/trunk/get-custom-stickers.php)
-
tags/2.3.4/pixo.php (copied) (copied from image-editor-by-pixo/trunk/pixo.php) (2 diffs)
-
tags/2.3.4/post-types.php (copied) (copied from image-editor-by-pixo/trunk/post-types.php)
-
tags/2.3.4/readme.txt (copied) (copied from image-editor-by-pixo/trunk/readme.txt) (2 diffs)
-
trunk/pixo.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-editor-by-pixo/tags/2.3.4/pixo.php
r3113637 r3131845 4 4 Plugin URI: https://pixoeditor.com 5 5 Description: 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. 36 Version: 2.3.4 7 7 */ 8 8 … … 328 328 </p> 329 329 <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> 332 332 <p> 333 333 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 5 5 Requires at least: 3.5 6 6 Tested up to: 6.6 7 Stable tag: 2.3. 37 Stable tag: 2.3.4 8 8 Requires PHP: 5.2 9 9 License: GPLv2 or later … … 104 104 105 105 == Changelog == 106 = 2.3.4 = 107 * Fixed a warning when WP_DEBUG mode is set (it was breaking the sign up form) 108 106 109 = 2.3.3 = 107 110 * Fixed inability to batch/multiple edit more than ~20 media files -
image-editor-by-pixo/trunk/pixo.php
r3113637 r3131845 4 4 Plugin URI: https://pixoeditor.com 5 5 Description: 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. 36 Version: 2.3.4 7 7 */ 8 8 … … 328 328 </p> 329 329 <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> 332 332 <p> 333 333 On successful registration you will get a confirmation email at the address you typed above. -
image-editor-by-pixo/trunk/readme.txt
r3122194 r3131845 5 5 Requires at least: 3.5 6 6 Tested up to: 6.6 7 Stable tag: 2.3. 37 Stable tag: 2.3.4 8 8 Requires PHP: 5.2 9 9 License: GPLv2 or later … … 104 104 105 105 == Changelog == 106 = 2.3.4 = 107 * Fixed a warning when WP_DEBUG mode is set (it was breaking the sign up form) 108 106 109 = 2.3.3 = 107 110 * Fixed inability to batch/multiple edit more than ~20 media files
Note: See TracChangeset
for help on using the changeset viewer.