WP-Print - Version 2.58.2

Version Description

Download this release

Release Info

Developer GamerZ
Plugin Icon WP-Print
Version 2.58.2
Comparing to
See all releases

Code changes from version 2.58.1 to 2.58.2

Files changed (2) hide show
  1. readme.txt +2 -2
  2. wp-print.php +3 -3
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: GamerZ
3
  Donate link: http://lesterchan.net/site/donation/
4
  Tags: print, printer, wp-print
5
  Requires at least: 4.0
6
- Tested up to: 5.4
7
- Stable tag: 2.58.1
8
 
9
  Displays a printable version of your WordPress blog's post/page.
10
 
3
  Donate link: http://lesterchan.net/site/donation/
4
  Tags: print, printer, wp-print
5
  Requires at least: 4.0
6
+ Tested up to: 5.9
7
+ Stable tag: 2.58.2
8
 
9
  Displays a printable version of your WordPress blog's post/page.
10
 
wp-print.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP-Print
4
  Plugin URI: http://lesterchan.net/portfolio/programming/php/
5
  Description: Displays a printable version of your WordPress blog's post/page.
6
- Version: 2.58.1
7
  Author: Lester 'GaMerZ' Chan
8
  Author URI: http://lesterchan.net
9
  Text Domain: wp-print
@@ -11,7 +11,7 @@ Text Domain: wp-print
11
 
12
 
13
  /*
14
- Copyright 2019 Lester Chan (email : lesterchan@gmail.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License as published by
@@ -252,7 +252,7 @@ function print_comments_content($display = true) {
252
  $matched_links = array();
253
  }
254
  $content = get_comment_text();
255
- $content = apply_filters('comment_text', $content);
256
  if(!print_can('images')) {
257
  $content = remove_image($content);
258
  }
3
  Plugin Name: WP-Print
4
  Plugin URI: http://lesterchan.net/portfolio/programming/php/
5
  Description: Displays a printable version of your WordPress blog's post/page.
6
+ Version: 2.58.2
7
  Author: Lester 'GaMerZ' Chan
8
  Author URI: http://lesterchan.net
9
  Text Domain: wp-print
11
 
12
 
13
  /*
14
+ Copyright 2020 Lester Chan (email : lesterchan@gmail.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License as published by
252
  $matched_links = array();
253
  }
254
  $content = get_comment_text();
255
+ $content = apply_filters( 'comment_text', $content, null, array() );
256
  if(!print_can('images')) {
257
  $content = remove_image($content);
258
  }