Skip to content

Commit

Permalink
Merge pull request #398 from cyberchimps/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
pallavic27 committed Apr 24, 2024
2 parents 8041be3 + 995fa3c commit d547107
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions changelog.txt
Expand Up @@ -8,6 +8,9 @@ Changelog Legend:
[x] = Deleted
[!] = Bugs

(17/04/2024) = Fix - Version 5.0.3.1
[!] = Fixed = Enhanced Security: Strengthened the codebase to further protect your website.

(28/03/2024) = Fix - Version 5.0.3
[*] = Changed = Minor UI Changes
[!] = Fixed = Fixed the vulnerability of unauthorized modification of footer text.
Expand Down
4 changes: 2 additions & 2 deletions core/includes/functions.php
Expand Up @@ -774,8 +774,8 @@ function responsive_post_meta_data() {
</span>',
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
/* translators: %s: view post by */
sprintf( esc_attr__( 'View all posts by %s', 'responsive' ), get_the_author() ),
esc_attr( get_the_author() )
esc_attr( sprintf( __( 'View all posts by %s', 'responsive' ), get_the_author() ) ),
esc_attr( wp_kses_post( get_the_author() ) )
)
);
?>
Expand Down
Expand Up @@ -295,8 +295,8 @@ public function responsive_get_related_single_post_meta_data($current_post_id)
</span>',
esc_url(get_author_posts_url(get_the_author_meta('ID'))),
/* translators: %s view posts by */
sprintf(esc_attr__('View all posts by %s', 'responsive'), get_the_author()),
esc_attr(get_the_author())
esc_attr( sprintf( __( 'View all posts by %s', 'responsive' ), get_the_author() ) ),
esc_attr( wp_kses_post( get_the_author() ) )
);
?>
</span>
Expand Down
2 changes: 1 addition & 1 deletion functions.php
Expand Up @@ -11,7 +11,7 @@
/**
* Define constants.
*/
define( 'RESPONSIVE_THEME_VERSION', '5.0.3' );
define( 'RESPONSIVE_THEME_VERSION', '5.0.3.1' );
define( 'RESPONSIVE_THEME_DIR', trailingslashit( get_template_directory() ) );
define( 'RESPONSIVE_THEME_URI', trailingslashit( esc_url( get_template_directory_uri() ) ) );
define( 'RESPONSIVE_PRO_OLDER_VERSION_CHECK', '2.4.2' );
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "responsive",
"version": "5.0.3",
"version": "5.0.3.1",
"description": "Responsive theme by CyberChimps",
"main": "Gruntfile.js",
"sasslintConfig": ".sasslintrc.json",
Expand Down
4 changes: 2 additions & 2 deletions partials/entry/meta.php
Expand Up @@ -51,8 +51,8 @@
</span>',
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
/* translators: view all posts by author */
sprintf( esc_attr__( 'View all posts by %s', 'responsive' ), get_the_author() ),
esc_attr( get_the_author() )
esc_attr( sprintf( __( 'View all posts by %s', 'responsive' ), get_the_author() ) ),
esc_attr( wp_kses_post( get_the_author() ) )
)
);
?>
Expand Down
4 changes: 2 additions & 2 deletions partials/single/meta.php
Expand Up @@ -46,8 +46,8 @@
</span>',
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
/* translators: %s view posts by */
sprintf( esc_attr__( 'View all posts by %s', 'responsive' ), get_the_author() ),
esc_attr( get_the_author() )
esc_attr( sprintf( __( 'View all posts by %s', 'responsive' ), get_the_author() ) ),
esc_attr( wp_kses_post( get_the_author() ) )
);
?>
</span>
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Expand Up @@ -3,7 +3,7 @@ Contributors: cyberchimps
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 5.6
Stable tag: 5.0.3
Stable tag: 5.0.3.1
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down
2 changes: 1 addition & 1 deletion style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d547107

Please sign in to comment.