Compare commits
23 Commits
864fe717f9
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
| 095651c4bf | |||
| b0eb83530c | |||
| 054b09e69e | |||
| d0c66fdbfb | |||
| baf728b22b | |||
| 8e92d0617e | |||
| ca58f24df3 | |||
| 553e789bd6 | |||
| e64e4b1b28 | |||
| 3119c67f8d | |||
| 729278ff3f | |||
| 01ca26189e | |||
| 90505b964a | |||
| 23a9c365e8 | |||
|
|
3df726ddf7 | ||
|
|
f312e57489 | ||
|
|
d3696168c9 | ||
|
|
8cdfd97703 | ||
|
|
b755d1c64d | ||
|
|
61795960e2 | ||
|
|
89151f5557 | ||
|
|
18d776f278 | ||
|
|
76d447655a |
@@ -53,6 +53,37 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
<a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
|
||||
</nav>
|
||||
|
||||
<div class="about__section changelog has-subtle-background-color">
|
||||
<div class="column">
|
||||
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
|
||||
_n(
|
||||
'<strong>Version %1$s</strong> addressed %2$s bug.',
|
||||
'<strong>Version %1$s</strong> addressed %2$s bugs.',
|
||||
16
|
||||
),
|
||||
'6.7.1',
|
||||
'16'
|
||||
);
|
||||
?>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: HelpHub URL. */
|
||||
__( 'For more information, see <a href="%s">the release notes</a>.' ),
|
||||
sprintf(
|
||||
/* translators: %s: WordPress version. */
|
||||
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
|
||||
sanitize_title( '6.7.1' )
|
||||
)
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="about__section">
|
||||
<div class="column">
|
||||
<h2>
|
||||
|
||||
@@ -2463,7 +2463,7 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
|
||||
position: relative;
|
||||
right: -1px
|
||||
right: -1px;
|
||||
}
|
||||
|
||||
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||
|
||||
@@ -2462,7 +2462,7 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
|
||||
position: relative;
|
||||
left: -1px
|
||||
left: -1px;
|
||||
}
|
||||
|
||||
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||
|
||||
@@ -554,7 +554,8 @@ body.trashing #publish-settings {
|
||||
.15s border-color ease-in-out;
|
||||
}
|
||||
|
||||
.accordion-section-title:has(button.accordion-trigger) {
|
||||
.accordion-section-title:has(button.accordion-trigger),
|
||||
#customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@@ -562,9 +563,10 @@ body.trashing #publish-settings {
|
||||
all: unset;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 10px 14px 11px 10px;
|
||||
padding: 10px 14px 11px 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
|
||||
@@ -588,6 +590,7 @@ body.trashing #publish-settings {
|
||||
#customize-outer-theme-controls .accordion-section-title:after {
|
||||
content: "\f341";
|
||||
color: #a7aaad;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#customize-theme-controls .accordion-section-content,
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -553,7 +553,8 @@ body.trashing #publish-settings {
|
||||
.15s border-color ease-in-out;
|
||||
}
|
||||
|
||||
.accordion-section-title:has(button.accordion-trigger) {
|
||||
.accordion-section-title:has(button.accordion-trigger),
|
||||
#customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@@ -561,9 +562,10 @@ body.trashing #publish-settings {
|
||||
all: unset;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 10px 10px 11px 14px;
|
||||
padding: 10px 30px 11px 14px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
|
||||
@@ -587,6 +589,7 @@ body.trashing #publish-settings {
|
||||
#customize-outer-theme-controls .accordion-section-title:after {
|
||||
content: "\f345";
|
||||
color: #a7aaad;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#customize-theme-controls .accordion-section-content,
|
||||
|
||||
2
wp/wp-admin/css/customize-controls.min.css
vendored
2
wp/wp-admin/css/customize-controls.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -270,11 +270,11 @@ p {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.login .wp-login-logo {
|
||||
.login h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login .wp-login-logo a {
|
||||
.login h1 a {
|
||||
background-image: url(../images/w-logo-blue.png?ver=20131202);
|
||||
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
|
||||
background-size: 84px;
|
||||
@@ -324,13 +324,13 @@ p {
|
||||
|
||||
.login #nav a:hover,
|
||||
.login #backtoblog a:hover,
|
||||
.login .wp-login-logo a:hover {
|
||||
.login h1 a:hover {
|
||||
color: #135e96;
|
||||
}
|
||||
|
||||
.login #nav a:focus,
|
||||
.login #backtoblog a:focus,
|
||||
.login .wp-login-logo a:focus {
|
||||
.login h1 a:focus {
|
||||
color: #043959;
|
||||
}
|
||||
|
||||
@@ -391,7 +391,7 @@ body.interim-login {
|
||||
margin: 5px auto 20px;
|
||||
}
|
||||
|
||||
.interim-login.login .wp-login-logo a {
|
||||
.interim-login.login h1 a {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
||||
2
wp/wp-admin/css/login-rtl.min.css
vendored
2
wp/wp-admin/css/login-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -269,11 +269,11 @@ p {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.login .wp-login-logo {
|
||||
.login h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login .wp-login-logo a {
|
||||
.login h1 a {
|
||||
background-image: url(../images/w-logo-blue.png?ver=20131202);
|
||||
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
|
||||
background-size: 84px;
|
||||
@@ -323,13 +323,13 @@ p {
|
||||
|
||||
.login #nav a:hover,
|
||||
.login #backtoblog a:hover,
|
||||
.login .wp-login-logo a:hover {
|
||||
.login h1 a:hover {
|
||||
color: #135e96;
|
||||
}
|
||||
|
||||
.login #nav a:focus,
|
||||
.login #backtoblog a:focus,
|
||||
.login .wp-login-logo a:focus {
|
||||
.login h1 a:focus {
|
||||
color: #043959;
|
||||
}
|
||||
|
||||
@@ -390,7 +390,7 @@ body.interim-login {
|
||||
margin: 5px auto 20px;
|
||||
}
|
||||
|
||||
.interim-login.login .wp-login-logo a {
|
||||
.interim-login.login h1 a {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
||||
2
wp/wp-admin/css/login.min.css
vendored
2
wp/wp-admin/css/login.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -319,7 +319,7 @@
|
||||
$selected = 'selected';
|
||||
}
|
||||
|
||||
$html += '<option ' + $selected + ' value="0">No Parent</option>';
|
||||
$html += '<option ' + $selected + ' value="0">' + wp.i18n._x( 'No Parent', 'menu item without a parent in navigation menu' ) + '</option>';
|
||||
|
||||
$.each( menuItems, function() {
|
||||
var menuItem = $(this),
|
||||
@@ -364,7 +364,13 @@
|
||||
if ( i == itemPosition ) {
|
||||
$selected = 'selected';
|
||||
}
|
||||
$html += '<option ' + $selected + ' value="' + i + '">' + i + ' of ' + totalMenuItems + '</option>';
|
||||
var itemString = wp.i18n.sprintf(
|
||||
/* translators: 1: The current menu item number, 2: The total number of menu items. */
|
||||
wp.i18n._x( '%1$s of %2$s', 'part of a total number of menu items' ),
|
||||
i,
|
||||
totalMenuItems
|
||||
);
|
||||
$html += '<option ' + $selected + ' value="' + i + '">' + itemString + '</option>';
|
||||
}
|
||||
|
||||
} else {
|
||||
@@ -380,7 +386,13 @@
|
||||
if ( i == itemPosition ) {
|
||||
$selected = 'selected';
|
||||
}
|
||||
$html += '<option ' + $selected + ' value="' + i + '">' + i + ' of ' + totalSubMenuItems + '</option>';
|
||||
var submenuString = wp.i18n.sprintf(
|
||||
/* translators: 1: The current submenu item number, 2: The total number of submenu items. */
|
||||
wp.i18n._x( '%1$s of %2$s', 'part of a total number of menu items' ),
|
||||
i,
|
||||
totalSubMenuItems
|
||||
);
|
||||
$html += '<option ' + $selected + ' value="' + i + '">' + submenuString + '</option>';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
2
wp/wp-admin/js/nav-menu.min.js
vendored
2
wp/wp-admin/js/nav-menu.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -659,8 +659,10 @@ jQuery( function($) {
|
||||
'li.popular-category > label input[type="checkbox"]',
|
||||
function() {
|
||||
var t = $(this), c = t.is(':checked'), id = t.val();
|
||||
if ( id && t.parents('#taxonomy-'+taxonomy).length )
|
||||
$('#in-' + taxonomy + '-' + id + ', #in-popular-' + taxonomy + '-' + id).prop( 'checked', c );
|
||||
if ( id && t.parents('#taxonomy-'+taxonomy).length ) {
|
||||
$('input[id^="in-' + taxonomy + '-' + id + '"]').prop('checked', c);
|
||||
$('input#in-popular-' + taxonomy + '-' + id).prop('checked', c);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
2
wp/wp-admin/js/post.min.js
vendored
2
wp/wp-admin/js/post.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,35 +1,35 @@
|
||||
<?php
|
||||
|
||||
if ( file_exists( dirname( __FILE__ ) . '/wp-config-local.php' ) ) {
|
||||
include( dirname( __FILE__ ) . '/wp-config-local.php' );
|
||||
define( 'WP_LOCAL_DEV', true );
|
||||
if (file_exists(dirname(__FILE__) . '/wp-config-local.php')) {
|
||||
include(dirname(__FILE__) . '/wp-config-local.php');
|
||||
define('WP_LOCAL_DEV', true);
|
||||
} else {
|
||||
|
||||
// ------------------------------------
|
||||
define('DB_NAME', $_SERVER["SUBDOMAIN"]);
|
||||
define('DB_USER', $_SERVER["DB_USER"]);
|
||||
// --------------------------------------------
|
||||
define('DB_PASSWORD', $_SERVER["DB_PASSWORD"]);
|
||||
define('DB_HOST', $_SERVER["DB_HOST"]);
|
||||
define('CACHE_PASSWORD', $_SERVER["CACHE_PASSWORD"]);
|
||||
define('CACHE_HOST', $_SERVER["CACHE_HOST"]);
|
||||
define('CACHE_PORT', '6379');
|
||||
// ---------------------------------------------------
|
||||
define('DB_CHARSET', 'utf8');
|
||||
define('DB_COLLATE', '');
|
||||
define('AUTH_KEY', 'fad5cfeb464e3cb6d2a72bfe290d84e25478753824970a9455f5cb350a9f8183');
|
||||
define('SECURE_AUTH_KEY', '4238b8016c46c6b746e9fba4106c771e2f4b688b9445ad64ba7efff9a8272c9d');
|
||||
define('LOGGED_IN_KEY', '4238b8016c46c6b746e9fba4106c771e2f4b688b9445ad64ba7efff9a8272c9d');
|
||||
define('NONCE_KEY', '4b6f1e1470301e5d979e8d333616eaf556b4d1e980ae5f959e06dd494bb0d995');
|
||||
define('AUTH_SALT', 'bc345fc63882f49dbba21248add8beb61b8e68d20ce5d4623de03022a0666c1b');
|
||||
define('SECURE_AUTH_SALT', '03e361ac295e49d27bd47e6229558724bdf16e3ed9705efd2822c643c20ffdc0');
|
||||
define('LOGGED_IN_SALT', '90d8f33cc74663986e2bbe86b5d11539180ea434974ea2a1e17eca04f4b54abc');
|
||||
define('NONCE_SALT', '6640b7f1a18031eaf01b6e7dc3f445b6f582ab9922674c286c2b527c9c579dea');
|
||||
define('RT_WP_NGINX_HELPER_CACHE_PATH','/usr/share/nginx/subdomain/www/wp-content/uploads/cache');
|
||||
$table_prefix = 'wp_';
|
||||
// ------------------------------------
|
||||
define('DB_NAME', $_SERVER["SUBDOMAIN"]);
|
||||
define('DB_USER', $_SERVER["DB_USER"]);
|
||||
// --------------------------------------------
|
||||
define('DB_PASSWORD', $_SERVER["DB_PASSWORD"]);
|
||||
define('DB_HOST', $_SERVER["DB_HOST"]);
|
||||
define('CACHE_PASSWORD', $_SERVER["CACHE_PASSWORD"]);
|
||||
define('CACHE_HOST', $_SERVER["CACHE_HOST"]);
|
||||
define('CACHE_PORT', '6379');
|
||||
// ---------------------------------------------------
|
||||
define('DB_CHARSET', 'utf8');
|
||||
define('DB_COLLATE', '');
|
||||
define('AUTH_KEY', 'fad5cfeb464e3cb6d2a72bfe290d84e25478753824970a9455f5cb350a9f8183');
|
||||
define('SECURE_AUTH_KEY', '4238b8016c46c6b746e9fba4106c771e2f4b688b9445ad64ba7efff9a8272c9d');
|
||||
define('LOGGED_IN_KEY', '4238b8016c46c6b746e9fba4106c771e2f4b688b9445ad64ba7efff9a8272c9d');
|
||||
define('NONCE_KEY', '4b6f1e1470301e5d979e8d333616eaf556b4d1e980ae5f959e06dd494bb0d995');
|
||||
define('AUTH_SALT', 'bc345fc63882f49dbba21248add8beb61b8e68d20ce5d4623de03022a0666c1b');
|
||||
define('SECURE_AUTH_SALT', '03e361ac295e49d27bd47e6229558724bdf16e3ed9705efd2822c643c20ffdc0');
|
||||
define('LOGGED_IN_SALT', '90d8f33cc74663986e2bbe86b5d11539180ea434974ea2a1e17eca04f4b54abc');
|
||||
define('NONCE_SALT', '6640b7f1a18031eaf01b6e7dc3f445b6f582ab9922674c286c2b527c9c579dea');
|
||||
define('RT_WP_NGINX_HELPER_CACHE_PATH', '/usr/share/nginx/subdomain/www/wp-content/uploads/cache');
|
||||
$table_prefix = 'wp_';
|
||||
}
|
||||
|
||||
define( 'WP_AUTO_UPDATE_CORE', false);
|
||||
define('WP_AUTO_UPDATE_CORE', false);
|
||||
|
||||
/**
|
||||
* For developers: WordPress debugging mode.
|
||||
@@ -41,21 +41,21 @@ define( 'WP_AUTO_UPDATE_CORE', false);
|
||||
* You may want to examine $_ENV['PANTHEON_ENVIRONMENT'] to set this to be
|
||||
* "true" in dev, but false in test and live.
|
||||
*/
|
||||
if ( ! defined( 'WP_DEBUG' ) ) {
|
||||
define('WP_DEBUG', false);
|
||||
if (! defined('WP_DEBUG')) {
|
||||
define('WP_DEBUG', false);
|
||||
}
|
||||
|
||||
define( 'WPMS_ON', true );
|
||||
define( 'WPMS_SMTP_PASS', 'C#9!Ev-kt$$j' );
|
||||
define('WPMS_ON', true);
|
||||
define('WPMS_SMTP_PASS', 'C#9!Ev-kt$$j');
|
||||
|
||||
define('FORCE_SSL_ADMIN', true);
|
||||
$_SERVER['HTTPS']='on';
|
||||
// define('FORCE_SSL_ADMIN', true);
|
||||
// $_SERVER['HTTPS']='on';
|
||||
|
||||
/* That's all, stop editing! Happy Pressing. */
|
||||
|
||||
/** Absolute path to the WordPress directory. */
|
||||
if ( !defined('ABSPATH') )
|
||||
define('ABSPATH', dirname(__FILE__) . '/');
|
||||
if (!defined('ABSPATH'))
|
||||
define('ABSPATH', dirname(__FILE__) . '/');
|
||||
|
||||
/** Sets up WordPress vars and included files. */
|
||||
require_once(ABSPATH . 'wp-settings.php');
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* Plugin Name: Classic Editor
|
||||
* Plugin URI: https://wordpress.org/plugins/classic-editor/
|
||||
* Description: Enables the WordPress classic editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports the older plugins that extend this screen.
|
||||
* Version: 1.6.5
|
||||
* Version: 1.6.6
|
||||
* Author: WordPress Contributors
|
||||
* Author URI: https://github.com/WordPress/classic-editor/
|
||||
* License: GPLv2 or later
|
||||
@@ -69,6 +69,13 @@ class Classic_Editor {
|
||||
// Fix for Safari 18 negative horizontal margin on floats.
|
||||
add_action( 'admin_print_styles', array( __CLASS__, 'safari_18_temp_fix' ) );
|
||||
|
||||
// Fix for the Categories postbox for WP 6.7.1.
|
||||
global $wp_version;
|
||||
|
||||
if ( '6.7.1' === $wp_version && is_admin() ) {
|
||||
add_action( 'wp_default_scripts', array( __CLASS__, 'replace_post_js' ), 11 );
|
||||
}
|
||||
|
||||
if ( ! $block_editor && ! $gutenberg ) {
|
||||
return;
|
||||
}
|
||||
@@ -999,6 +1006,34 @@ class Classic_Editor {
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Temporary fix for the Categories postbox on the classic Edit Post screen.
|
||||
* See: https://core.trac.wordpress.org/ticket/62504.
|
||||
*/
|
||||
public static function replace_post_js( $scripts ) {
|
||||
$script = $scripts->query( 'post', 'registered' );
|
||||
$suffix = wp_scripts_get_suffix();
|
||||
|
||||
if ( $script ) {
|
||||
if ( '62504-20241121' === $script->ver ) {
|
||||
// The script src was replaced from another plugin.
|
||||
return;
|
||||
}
|
||||
|
||||
$script->src = plugins_url( 'scripts/', __FILE__ ) . "post{$suffix}.js";
|
||||
$script->ver = '62504-20241121';
|
||||
} else {
|
||||
$scripts->add(
|
||||
'post',
|
||||
plugins_url( 'scripts/', __FILE__ ) . "post{$suffix}.js",
|
||||
array( 'suggest', 'wp-lists', 'postbox', 'tags-box', 'underscore', 'word-count', 'wp-a11y', 'wp-sanitize', 'clipboard' ),
|
||||
'62504-20241121',
|
||||
1
|
||||
);
|
||||
$scripts->set_translations( 'post' );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
add_action( 'plugins_loaded', array( 'Classic_Editor', 'init_actions' ) );
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
Contributors: wordpressdotorg, azaozz, melchoyce, chanthaboune, alexislloyd, pento, youknowriad, desrosj, luciano-croce, ironprogrammer
|
||||
Tags: gutenberg, disable, disable gutenberg, editor, classic editor, block editor
|
||||
Requires at least: 4.9
|
||||
Tested up to: 6.6
|
||||
Stable tag: 1.6.5
|
||||
Tested up to: 6.7
|
||||
Stable tag: 1.6.6
|
||||
Requires PHP: 5.2.4
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
@@ -29,6 +29,9 @@ By default, this plugin hides all functionality available in the new block edito
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.6.6 =
|
||||
* Added fix for selecting/deselecting multiple unwanted categories in WordPress 6.7.1 when clicking on a category checkbox on the old Edit Post screen.
|
||||
|
||||
= 1.6.5 =
|
||||
* Added fix for Safari 18 negative horizontal margin on floats.
|
||||
|
||||
|
||||
1357
wp/wp-content/plugins/classic-editor/scripts/post.js
Normal file
1357
wp/wp-content/plugins/classic-editor/scripts/post.js
Normal file
File diff suppressed because it is too large
Load Diff
2
wp/wp-content/plugins/classic-editor/scripts/post.min.js
vendored
Normal file
2
wp/wp-content/plugins/classic-editor/scripts/post.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -1,3 +1,6 @@
|
||||
= 11.1.75 (2024-11-29) =
|
||||
* Add Salt/key config global to avoid disconnection in case secret changes
|
||||
|
||||
= 11.1.73 (2024-11-19) =
|
||||
* Remove unknow wp_json_decode function
|
||||
|
||||
@@ -298,6 +301,3 @@
|
||||
= 8.9.20 (2022-04-13) =
|
||||
* Fix security issue related to sanitizing inputs
|
||||
|
||||
= 8.9.14 (2022-04-12) =
|
||||
* Fix security issue related to form inputs
|
||||
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2024-11-19T10:31:24+00:00\n"
|
||||
"POT-Creation-Date: 2024-11-29T15:54:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.11.0\n"
|
||||
"X-Domain: leadin\n"
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace Leadin;
|
||||
* Plugin Name: HubSpot All-In-One Marketing - Forms, Popups, Live Chat
|
||||
* Plugin URI: http://www.hubspot.com/integrations/wordpress
|
||||
* Description: HubSpot’s official WordPress plugin allows you to add forms, popups, and live chat to your website and integrate with the best WordPress CRM.
|
||||
* Version: 11.1.73
|
||||
* Version: 11.1.75
|
||||
* Author: HubSpot
|
||||
* Author URI: http://hubspot.com/products/wordpress
|
||||
* License: GPL v3
|
||||
@@ -59,14 +59,21 @@ if ( ! defined( 'LEADIN_REQUIRED_PHP_VERSION' ) ) {
|
||||
}
|
||||
|
||||
if ( ! defined( 'LEADIN_PLUGIN_VERSION' ) ) {
|
||||
define( 'LEADIN_PLUGIN_VERSION', '11.1.73' );
|
||||
define( 'LEADIN_PLUGIN_VERSION', '11.1.75' );
|
||||
}
|
||||
|
||||
|
||||
if ( ! defined( 'LEADIN_PREFIX' ) ) {
|
||||
define( 'LEADIN_PREFIX', 'leadin' );
|
||||
}
|
||||
|
||||
if ( ! defined( 'LEADIN_KEY' ) && defined( 'LOGGED_IN_KEY' ) ) {
|
||||
define( 'LEADIN_KEY', LOGGED_IN_KEY );
|
||||
}
|
||||
|
||||
if ( ! defined( 'LEADIN_SALT' ) && defined( 'LOGGED_IN_SALT' ) ) {
|
||||
define( 'LEADIN_SALT', LOGGED_IN_SALT );
|
||||
}
|
||||
|
||||
// =============================================
|
||||
// Set autoload
|
||||
// =============================================
|
||||
|
||||
@@ -12,8 +12,8 @@ class OAuthCrypto {
|
||||
* Return the key to use in encrypting/decrypting OAuth credentials
|
||||
*/
|
||||
private static function get_key() {
|
||||
if ( defined( 'LOGGED_IN_KEY' ) ) {
|
||||
return LOGGED_IN_KEY;
|
||||
if ( defined( 'LEADIN_KEY' ) ) {
|
||||
return LEADIN_KEY;
|
||||
}
|
||||
|
||||
return '';
|
||||
@@ -23,8 +23,8 @@ class OAuthCrypto {
|
||||
* Return the salt to use in encrypting/decrypting OAuth credentials
|
||||
*/
|
||||
private static function get_salt() {
|
||||
if ( defined( 'LOGGED_IN_SALT' ) ) {
|
||||
return LOGGED_IN_SALT;
|
||||
if ( defined( 'LEADIN_SALT' ) ) {
|
||||
return LEADIN_SALT;
|
||||
}
|
||||
|
||||
return '';
|
||||
|
||||
@@ -6,7 +6,7 @@ Tags: CRM, Marketing, Live Chat, Forms, Analytics, popups, newsletter, contact m
|
||||
Requires at least: 5.8
|
||||
Tested up to: 6.7
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 11.1.73
|
||||
Stable tag: 11.1.75
|
||||
|
||||
The CRM, Sales, and Marketing WordPress plugin to grow your business better.
|
||||
|
||||
@@ -418,12 +418,12 @@ Please visit the <a href="https://community.hubspot.com/?utm_source=wordpress-pl
|
||||
== Changelog ==
|
||||
|
||||
<a href="http://plugins.svn.wordpress.org/leadin/trunk/changelog.txt" target="_blank">Full changelog here</a>
|
||||
- Current version: 11.1.73
|
||||
- Version release date: 2024-11-19
|
||||
- Current version: 11.1.75
|
||||
- Version release date: 2024-11-29
|
||||
|
||||
= 11.1.75 (2024-11-29) =
|
||||
* Add Salt/key config global to avoid disconnection in case secret changes
|
||||
|
||||
= 11.1.73 (2024-11-19) =
|
||||
* Remove unknow wp_json_decode function
|
||||
|
||||
= 11.1.66 (2024-10-23) =
|
||||
* Register gutenberg blocks at PHP side
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php return array(
|
||||
'root' => array(
|
||||
'name' => 'hubspot/leadin-wordpress-plugin',
|
||||
'pretty_version' => '11.1.73',
|
||||
'version' => '11.1.73.0',
|
||||
'reference' => '52fed1357aeea9e86434fa7c5c05f9ff7c3c1653',
|
||||
'pretty_version' => '11.1.75',
|
||||
'version' => '11.1.75.0',
|
||||
'reference' => '6a4d158f57411bd11dafed02a284b7e7f893f010',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
@@ -11,9 +11,9 @@
|
||||
),
|
||||
'versions' => array(
|
||||
'hubspot/leadin-wordpress-plugin' => array(
|
||||
'pretty_version' => '11.1.73',
|
||||
'version' => '11.1.73.0',
|
||||
'reference' => '52fed1357aeea9e86434fa7c5c05f9ff7c3c1653',
|
||||
'pretty_version' => '11.1.75',
|
||||
'version' => '11.1.75.0',
|
||||
'reference' => '6a4d158f57411bd11dafed02a284b7e7f893f010',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user