Changeset 3414466
- Timestamp:
- 12/08/2025 03:07:34 PM (3 months ago)
- Location:
- wpadverts/trunk
- Files:
-
- 4 edited
-
addons/contact-form/includes/class-block-details.php (modified) (1 diff)
-
languages/wpadverts.pot (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wpadverts.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpadverts/trunk/addons/contact-form/includes/class-block-details.php
r3340879 r3414466 292 292 293 293 // delete uploaded files ($form) 294 $uniqid = sanitize_file_name( adverts_request( "wpadverts-form-upload-uniqid" ) ); 295 adext_contact_form_delete_tmp_files( $form->get_scheme(), $uniqid ); 294 $request_uniqid = adverts_request( "wpadverts-form-upload-uniqid" ); 295 if(is_string( $request_uniqid ) ) { 296 $uniqid = sanitize_file_name( $request_uniqid ); 297 adext_contact_form_delete_tmp_files( $form->get_scheme(), $uniqid ); 298 } 296 299 297 300 $bind = array(); -
wpadverts/trunk/languages/wpadverts.pot
r3406819 r3414466 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Adverts 2.2. 9\n"5 "Project-Id-Version: WP Adverts 2.2.10\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpadverts\n" 7 "POT-Creation-Date: 2025-12-0 1 12:13:42+00:00\n"7 "POT-Creation-Date: 2025-12-08 15:06:23+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" … … 72 72 #: addons/contact-form/contact-form.php:516 73 73 #: addons/contact-form/includes/admin-pages.php:62 74 #: addons/contact-form/includes/class-block-details.php:31 174 #: addons/contact-form/includes/class-block-details.php:314 75 75 #: addons/core/includes/admin-pages.php:91 76 76 #: addons/core/includes/admin-pages.php:171 … … 134 134 #: addons/contact-form/contact-form.php:149 135 135 #: addons/contact-form/contact-form.php:507 136 #: addons/contact-form/includes/class-block-details.php:30 4136 #: addons/contact-form/includes/class-block-details.php:307 137 137 msgid "Your message has been sent." 138 138 msgstr "" -
wpadverts/trunk/readme.txt
r3406819 r3414466 6 6 Requires at least: 5.7 7 7 Tested up to: 6.9 8 Stable tag: 2.2. 98 Stable tag: 2.2.10 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 125 125 126 126 == Changelog == 127 128 = 2.2.10 - 2025-12-08 = 129 130 * FIXED: Error when submitting a contact form. 127 131 128 132 = 2.2.9 - 2025-12-01 = -
wpadverts/trunk/wpadverts.php
r3406819 r3414466 7 7 * Text Domain: wpadverts 8 8 * Domain Path: /languages 9 * Version: 2.2. 99 * Version: 2.2.10 10 10 * 11 11 * Adverts is free software: you can redistribute it and/or modify
Note: See TracChangeset
for help on using the changeset viewer.