Plugin Directory

Changeset 2722914


Ignore:
Timestamp:
05/12/2022 05:19:26 PM (4 years ago)
Author:
Reamaze
Message:

breaking release - 2.0.0

Location:
reamaze/trunk
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • reamaze/trunk/includes/admin/reamaze-admin-dashboard.php

    r2721482 r2722914  
    66 * @category    Admin
    77 * @package     Reamaze/Admin
    8  * @version     1.2.5
     8 * @version     2.0.0
    99 */
    1010
  • reamaze/trunk/includes/admin/reamaze-admin-menus.php

    r2721482 r2722914  
    66 * @category    Admin
    77 * @package     Reamaze/Admin
    8  * @version     1.2.5
     8 * @version     2.0.0
    99 */
    1010
  • reamaze/trunk/includes/admin/reamaze-admin-settings.php

    r2721482 r2722914  
    66 * @category    Admin
    77 * @package     Reamaze/Admin
    8  * @version     1.2.5
     8 * @version     2.0.0
    99 */
    1010
  • reamaze/trunk/includes/admin/reamaze-admin.php

    r2721482 r2722914  
    77 * @category    Admin
    88 * @package     Reamaze/Admin
    9  * @version     1.2.5
     9 * @version     2.0.0
    1010 */
    1111
  • reamaze/trunk/includes/admin/settings/reamaze-settings-account.php

    r2721482 r2722914  
    66 * @category    Admin
    77 * @package     Reamaze/Admin
    8  * @version     1.2.5
     8 * @version     2.0.0
    99 */
    1010
  • reamaze/trunk/includes/admin/settings/reamaze-settings-page.php

    r2722281 r2722914  
    66 * @category    Admin
    77 * @package     Reamaze/Admin
    8  * @version     1.2.5
     8 * @version     2.0.0
    99 */
    1010
     
    8585            $option_value = sanitize_textarea_field( trim( $_POST[ $value['id'] ] ) );
    8686          } else {
    87                         # we need to allow users to insert HTML, script tags, style tags.
    88                         $option_value = trim( wp_unslash( $_POST[ $value['id'] ] ) );
     87                        $option_value = trim( wp_kses_post( wp_unslash( $_POST[ $value['id'] ] ) ) );
    8988          }
    9089          break;
  • reamaze/trunk/includes/admin/settings/reamaze-settings-personal.php

    r2722281 r2722914  
    66 * @category    Admin
    77 * @package     Reamaze/Admin
    8  * @version     1.2.5
     8 * @version     2.0.0
    99 */
    1010
  • reamaze/trunk/includes/admin/settings/reamaze-settings-widget.php

    r2721482 r2722914  
    66 * @category    Admin
    77 * @package     Reamaze/Admin
    8  * @version     1.2.5
     8 * @version     2.0.0
    99 */
    1010
     
    4949      ),
    5050
    51       array(
    52         'title'    => __( 'Widget Code', 'reamaze' ),
    53         'desc'     => __( "Paste your customized Widget code here. You can customize your widget in Reamaze Admin -> Settings -> Widget Builder", 'reamaze' ),
    54         'id'       => 'reamaze_widget_code',
    55         'type'     => 'textarea',
    56         'default'  => '',
    57         'css'      => 'min-height:300px;',
    58         'raw'      => true,
    59         'class'    => 'large-text code'
    60       ),
    61 
    6251      array( 'type' => 'sectionend', 'id' => 'widget-settings-header' )
    6352    );
  • reamaze/trunk/includes/reamaze-ajax.php

    r2721482 r2722914  
    1111 * @category    Class
    1212 * @package     Reamaze/Classes
    13  * @version     1.2.5
     13 * @version     2.0.0
    1414 */
    1515
  • reamaze/trunk/includes/reamaze-functions.php

    r2721482 r2722914  
    1010 * @author      Reamaze
    1111 * @package     Reamaze
    12  * @version     1.2.5
     12 * @version     2.0.0
    1313 */
    1414
  • reamaze/trunk/includes/reamaze-shortcodes.php

    r2721482 r2722914  
    1111 * @category    Class
    1212 * @package     Reamaze/Classes
    13  * @version     1.2.5
     13 * @version     2.0.0
    1414 */
    1515
  • reamaze/trunk/readme.txt

    r2721482 r2722914  
    55Requires at least: 4.0
    66Tested up to: 5.9
    7 Stable tag: 1.2.5
     7Stable tag: 2.0.0
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    156156
    157157== Changelog ==
     158= 2.0.0 =
     159BREAKING CHANGE - This release removes the ability to enter your widget code via the Reamaze Settings in WordPress. Widget scripts will have to inserted manually into your WordPress theme.
     160
    158161= 1.2.5 =
    159162* Small code tweaks
     
    219222
    220223== Upgrade Notice ==
     224= 2.0.0 =
     225BREAKING CHANGE - This release removes the ability to enter your widget code via the Reamaze Settings in WordPress. Widget scripts will have to inserted manually into your WordPress theme.
     226
    221227= 1.2.5 =
    222228* Small code tweaks
  • reamaze/trunk/reamaze.php

    r2721482 r2722914  
    44 * Plugin URI:  https://www.reamaze.com?referrer=wordpress
    55 * Description: Reamaze Helpdesk, Customer Support and Live Chat for WordPress
    6  * Version:     1.2.5
     6 * Version:     2.0.0
    77 * Author:      The Reamaze Team
    88 * Author URI:  https://www.reamaze.com?referrer=wordpress
     
    1111
    1212class Reamaze {
    13   public static $version = '1.2.5';
     13  public static $version = '2.0.0';
    1414
    1515  public function __construct() {
Note: See TracChangeset for help on using the changeset viewer.