Plugin Directory

Changeset 2681741


Ignore:
Timestamp:
02/19/2022 11:12:09 AM (4 years ago)
Author:
themastercut
Message:

Version: 2.8.12.

Location:
revision-manager-tmc/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • revision-manager-tmc/trunk/readme.txt

    r2681740 r2681741  
    66Tested up to: 5.9.0
    77Requires PHP: 5.6
    8 Stable tag: 2.8.11
     8Stable tag: 2.8.12
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • revision-manager-tmc/trunk/revision-manager-tmc.php

    r2681740 r2681741  
    44Description:    Clone your post, page or custom post type to a draft. Draft up revisions of live, published content.
    55Tags:           revisions, revisionize, admin, wiki, accept, revision, revisionary, revision control, revision, manager, notify, draft manager, authors reviser, admin, post, revisions, permissions, post permit, submit changes
    6 Version:        2.8.11
     6Version:        2.8.12
    77Author:         JetPlugs.com
    88Author URI:     https://jetplugs.com
     
    3434//  ----------------------------------------
    3535
    36 App::initShellPress( __FILE__, 'rm_tmc', '2.8.11', 'plugin' );
     36App::initShellPress( __FILE__, 'rm_tmc', '2.8.12', 'plugin' );
    3737
    3838//  ----------------------------------------
  • revision-manager-tmc/trunk/src/Components/Revisions.php

    r2681579 r2681741  
    969969            if( $linkedPostTitle !== $originalPostTitle ){
    970970
    971                 echo sprintf( '<div class="rm_tmc_diff">%1$s</div>', wp_text_diff( $linkedPostTitle, $originalPostTitle ) );
     971                echo wp_kses_post( sprintf( '<div class="rm_tmc_diff">%1$s</div>', wp_text_diff( $linkedPostTitle, $originalPostTitle ) ) );
    972972
    973973            }
     
    999999                if( $linkedPostContent !== $originalPostContent ){
    10001000
    1001                     echo sprintf( '<div class="rm_tmc_diff">%1$s</div>', wp_text_diff( $linkedPostContent, $originalPostContent ) );
     1001                    echo wp_kses_post( sprintf( '<div class="rm_tmc_diff">%1$s</div>', wp_text_diff( $linkedPostContent, $originalPostContent ) ) );
    10021002
    10031003                }
     
    10621062                    }
    10631063                   
    1064                     echo $diffEl;
     1064                    echo wp_kses_post( $diffEl );
    10651065                   
    10661066                },
Note: See TracChangeset for help on using the changeset viewer.