Version Description
Download this release
Release Info
Developer | automattic |
Plugin | Co-Authors Plus |
Version | 3.4.91 |
Comparing to | |
See all releases |
Code changes from version 3.4.9 to 3.4.91
- .editorconfig +24 -0
- .gitignore +6 -0
- CHANGELOG.md +3 -0
- README.md +1 -1
- co-authors-plus.php +3 -3
- readme.txt +1 -1
.editorconfig
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This file is for unifying the coding style for different editors and IDEs
|
2 |
+
# editorconfig.org
|
3 |
+
|
4 |
+
# WordPress Coding Standards
|
5 |
+
# https://make.wordpress.org/core/handbook/coding-standards/
|
6 |
+
|
7 |
+
root = true
|
8 |
+
|
9 |
+
[*]
|
10 |
+
charset = utf-8
|
11 |
+
end_of_line = lf
|
12 |
+
indent_size = 4
|
13 |
+
tab_width = 4
|
14 |
+
indent_style = tab
|
15 |
+
insert_final_newline = true
|
16 |
+
trim_trailing_whitespace = true
|
17 |
+
|
18 |
+
[*.txt]
|
19 |
+
trim_trailing_whitespace = false
|
20 |
+
|
21 |
+
[*.{md,json,yml}]
|
22 |
+
trim_trailing_whitespace = false
|
23 |
+
indent_style = space
|
24 |
+
indent_size = 2
|
.gitignore
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.DS_Store
|
2 |
+
.svn
|
3 |
+
.idea/
|
4 |
+
wpcom-helper.php
|
5 |
+
/composer.lock
|
6 |
+
/vendor
|
CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
# Changelog for Co-Authors Plus
|
2 |
|
|
|
|
|
|
|
3 |
**3.4.9 (Aug 11, 2021)**
|
4 |
* Fix clash on updating guest author with same slug as a WP_User #748
|
5 |
* Resolve warning from fix_author_page() when called too early #801
|
1 |
# Changelog for Co-Authors Plus
|
2 |
|
3 |
+
**3.4.91 (Aug 12, 2021)**
|
4 |
+
* Revert change with #686 regex change #816
|
5 |
+
|
6 |
**3.4.9 (Aug 11, 2021)**
|
7 |
* Fix clash on updating guest author with same slug as a WP_User #748
|
8 |
* Resolve warning from fix_author_page() when called too early #801
|
README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Tags: authors, users, multiple authors, co-authors, multi-author, publishing
|
5 |
* Tested up to: 5.8
|
6 |
* Requires at least: 4.1
|
7 |
-
* Stable tag: 3.4.
|
8 |
|
9 |
Assign multiple bylines to posts, pages, and custom post types via a search-as-you-type input box
|
10 |
|
4 |
* Tags: authors, users, multiple authors, co-authors, multi-author, publishing
|
5 |
* Tested up to: 5.8
|
6 |
* Requires at least: 4.1
|
7 |
+
* Stable tag: 3.4.91
|
8 |
|
9 |
Assign multiple bylines to posts, pages, and custom post types via a search-as-you-type input box
|
10 |
|
co-authors-plus.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Co-Authors Plus
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/co-authors-plus/
|
5 |
Description: Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter.
|
6 |
-
Version: 3.4.
|
7 |
Author: Mohammad Jangda, Daniel Bachhuber, Automattic
|
8 |
Copyright: 2008-2015 Shared and distributed between Mohammad Jangda, Daniel Bachhuber, Weston Ruter
|
9 |
|
@@ -32,7 +32,7 @@ Co-author - in the context of a single post, a guest author or user assigned to
|
|
32 |
Author - user with the role of author
|
33 |
*/
|
34 |
|
35 |
-
define( 'COAUTHORS_PLUS_VERSION', '3.4.
|
36 |
|
37 |
require_once dirname( __FILE__ ) . '/template-tags.php';
|
38 |
require_once dirname( __FILE__ ) . '/deprecated.php';
|
@@ -743,7 +743,7 @@ class CoAuthors_Plus {
|
|
743 |
$where = preg_replace( '/\s\b(?:' . $wpdb->posts . '\.)?post_author\s*IN\s*\(' . $id . '\)/', ' (' . $maybe_both_query . ' ' . $terms_implode . ')', $where, -1 ); // ' . $wpdb->postmeta . '.meta_id IS NOT NULL AND
|
744 |
|
745 |
} else {
|
746 |
-
$where = preg_replace( '/(\b(?:' . $wpdb->posts . '\.)?post_author\s*=\s*(' . $id . '
|
747 |
}
|
748 |
|
749 |
// the block targets the private posts clause (if it exists)
|
3 |
Plugin Name: Co-Authors Plus
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/co-authors-plus/
|
5 |
Description: Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter.
|
6 |
+
Version: 3.4.91
|
7 |
Author: Mohammad Jangda, Daniel Bachhuber, Automattic
|
8 |
Copyright: 2008-2015 Shared and distributed between Mohammad Jangda, Daniel Bachhuber, Weston Ruter
|
9 |
|
32 |
Author - user with the role of author
|
33 |
*/
|
34 |
|
35 |
+
define( 'COAUTHORS_PLUS_VERSION', '3.4.91' );
|
36 |
|
37 |
require_once dirname( __FILE__ ) . '/template-tags.php';
|
38 |
require_once dirname( __FILE__ ) . '/deprecated.php';
|
743 |
$where = preg_replace( '/\s\b(?:' . $wpdb->posts . '\.)?post_author\s*IN\s*\(' . $id . '\)/', ' (' . $maybe_both_query . ' ' . $terms_implode . ')', $where, -1 ); // ' . $wpdb->postmeta . '.meta_id IS NOT NULL AND
|
744 |
|
745 |
} else {
|
746 |
+
$where = preg_replace( '/(\b(?:' . $wpdb->posts . '\.)?post_author\s*=\s*(' . $id . '))/', '(' . $maybe_both_query . ' ' . $terms_implode . ')', $where, -1 ); // ' . $wpdb->postmeta . '.meta_id IS NOT NULL AND
|
747 |
}
|
748 |
|
749 |
// the block targets the private posts clause (if it exists)
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: batmoo, danielbachhuber, automattic
|
|
3 |
Tags: authors, users, multiple authors, coauthors, multi-author, publishing
|
4 |
Tested up to: 5.8
|
5 |
Requires at least: 4.1
|
6 |
-
Stable tag: 3.4.
|
7 |
|
8 |
Assign multiple bylines to posts, pages, and custom post types via a search-as-you-type input box
|
9 |
|
3 |
Tags: authors, users, multiple authors, coauthors, multi-author, publishing
|
4 |
Tested up to: 5.8
|
5 |
Requires at least: 4.1
|
6 |
+
Stable tag: 3.4.91
|
7 |
|
8 |
Assign multiple bylines to posts, pages, and custom post types via a search-as-you-type input box
|
9 |
|