wip
This commit is contained in:
@@ -582,12 +582,9 @@ function wpcf7_admin_integration_page() {
|
||||
|
||||
$formatter->append_preformatted(
|
||||
sprintf(
|
||||
/* translators: %s: link labeled 'Integration with external APIs' */
|
||||
esc_html( __( 'You can expand the possibilities of your contact forms by integrating them with external services. For details, see %s.', 'contact-form-7' ) ),
|
||||
wpcf7_link(
|
||||
__( 'https://contactform7.com/integration-with-external-apis/', 'contact-form-7' ),
|
||||
__( 'Integration with external APIs', 'contact-form-7' )
|
||||
)
|
||||
/* translators: %s: URL to support page about integration with external APIs */
|
||||
__( 'You can expand the possibilities of your contact forms by integrating them with external services. For details, see <a href="%s">Integration with external APIs</a>.', 'contact-form-7' ),
|
||||
__( 'https://contactform7.com/integration-with-external-apis/', 'contact-form-7' )
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
@@ -31,16 +31,11 @@ function wpcf7_add_form_tag_captcha() {
|
||||
|
||||
function wpcf7_captchac_form_tag_handler( $tag ) {
|
||||
if ( ! class_exists( 'ReallySimpleCaptcha' ) ) {
|
||||
$error = sprintf(
|
||||
/* translators: %s: link labeled 'Really Simple CAPTCHA' */
|
||||
esc_html( __( 'To use CAPTCHA, you need %s plugin installed.', 'contact-form-7' ) ),
|
||||
wpcf7_link(
|
||||
'https://wordpress.org/plugins/really-simple-captcha/',
|
||||
'Really Simple CAPTCHA'
|
||||
)
|
||||
);
|
||||
|
||||
return sprintf( '<em>%s</em>', $error );
|
||||
return wp_kses_data( sprintf(
|
||||
/* translators: %s: URL to the Really Simple CAPTCHA plugin page */
|
||||
__( '<strong>Warning:</strong> The <a href="%s">Really Simple CAPTCHA</a> plugin is not active.', 'contact-form-7' ),
|
||||
'https://wordpress.org/plugins/really-simple-captcha/'
|
||||
) );
|
||||
}
|
||||
|
||||
if ( empty( $tag->name ) ) {
|
||||
@@ -418,8 +413,10 @@ function wpcf7_generate_captcha( $options = null ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( ! is_dir( $captcha->tmp_dir )
|
||||
or ! wp_is_writable( $captcha->tmp_dir ) ) {
|
||||
if (
|
||||
! is_dir( $captcha->tmp_dir ) or
|
||||
! wp_is_writable( $captcha->tmp_dir )
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
Contributors: rocklobsterinc, takayukister
|
||||
Donate link: https://contactform7.com/donate/
|
||||
Tags: contact form, schema-woven validation
|
||||
Tested up to: 6.8
|
||||
Tested up to: 6.9
|
||||
Requires at least: 6.7
|
||||
Requires PHP: 7.4
|
||||
Stable tag: 6.1.3
|
||||
Stable tag: 6.1.4
|
||||
License: GPLv2 or later
|
||||
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
@@ -68,6 +68,10 @@ Do you have questions or issues with Contact Form 7? Use these support channels
|
||||
|
||||
For more information, see [Releases](https://contactform7.com/category/releases/).
|
||||
|
||||
= 6.1.4 =
|
||||
|
||||
[https://contactform7.com/contact-form-7-614/](https://contactform7.com/contact-form-7-614/)
|
||||
|
||||
= 6.1.3 =
|
||||
|
||||
[https://contactform7.com/contact-form-7-613/](https://contactform7.com/contact-form-7-613/)
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
* Author URI: https://github.com/rocklobster-in/
|
||||
* License: GPL v2 or later
|
||||
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||
* Version: 6.1.3
|
||||
* Version: 6.1.4
|
||||
* Requires at least: 6.7
|
||||
* Requires PHP: 7.4
|
||||
*/
|
||||
|
||||
define( 'WPCF7_VERSION', '6.1.3' );
|
||||
define( 'WPCF7_VERSION', '6.1.4' );
|
||||
|
||||
define( 'WPCF7_REQUIRED_WP_VERSION', '6.7' );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user