Plugin Directory

Changeset 2008626


Ignore:
Timestamp:
01/08/2019 07:36:11 PM (7 years ago)
Author:
plenigo
Message:

Version 1.8.4

Location:
plenigo/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • plenigo/trunk/plenigo_plugin/PlenigoContentManager.php

    r1999856 r2008626  
    896896                    // checkout snippet
    897897                    $buyOnClick = $checkoutBuilder->build($coSettings, null, $useRegister);
     898
     899                    $buyOnClick = htmlspecialchars ( $buyOnClick, ENT_QUOTES, 'UTF-8', false );
     900
    898901                }
    899902                if (stristr($html, self::REPLACE_PRODUCT_NAME) !== FALSE ||
     
    910913                        $loginOnClick = $this->get_regular_login();
    911914                    }
     915
     916                    $loginOnClick = htmlspecialchars ( $loginOnClick, ENT_QUOTES, 'UTF-8', false );
    912917                }
    913918            } catch (\Exception $exc) {
  • plenigo/trunk/plenigo_plugin/PlenigoShortcodeManager.php

    r1999856 r2008626  
    207207        $loginSnippet = PlenigoSDKManager::get()->getLoginSnippet();
    208208
     209        $loginSnippet = htmlspecialchars ( $loginSnippet, ENT_QUOTES, 'UTF-8', false );
     210
    209211        if (empty($targetUrl) && isset($_GET["redirect"])) {
    210212            $targetUrl = $_GET["redirect"];
     
    842844            }
    843845            $checkoutSnippet = $this->buildCheckoutSnippet($atts, $tag, $prodId);
     846
     847            $checkoutSnippet = htmlspecialchars ($checkoutSnippet, ENT_QUOTES, 'UTF-8',false);
    844848
    845849//            $checkoutSnippet = substr_replace('"', '"', $checkoutSnippet);
  • plenigo/trunk/plenigo_plugin/wooCommerce/WC_Gateway_Plenigo.php

    r1999856 r2008626  
    200200                    try {
    201201                        $checkoutSnippet.= $checkoutBuilder->build($coSettings);
     202                        $checkoutSnippet = htmlspecialchars ($checkoutSnippet, ENT_QUOTES, 'UTF-8',false);
     203
    202204                    } catch (Exception $exc) {
    203205                        plenigo_log_message($exc->getMessage() . ': ' . $exc->getTraceAsString(), E_USER_WARNING);
  • plenigo/trunk/plenigo_template/plenigo-curtain-single.html

    r1999856 r2008626  
    1717
    1818        <div class="PlenigoFooter">
    19             <button class="btn btn-default enp-button cust-pl-btn" style="<!--[LOGIN_STYLE]-->" onclick='<!--[LOGIN_CLICK]-->'><!--[LOGIN_TITLE]--></button>
    20             <button class="btn btn-default enp-button cust-pl-btn" style="<!--[CUSTOM_STYLE]-->" onclick='<!--[CUSTOM_CLICK]-->'><!--[CUSTOM_TITLE]--></button>
    21             <button class="btn btn-default enp-button cust-pl-btn" style="<!--[BUTTON_STYLE]-->" onclick='<!--[BUTTON_CLICK]-->'><!--[BUTTON_TITLE]--></button>
     19            <button class="btn btn-default enp-button cust-pl-btn" style="<!--[LOGIN_STYLE]-->" onclick="<!--[LOGIN_CLICK]-->"><!--[LOGIN_TITLE]--></button>
     20            <button class="btn btn-default enp-button cust-pl-btn" style="<!--[CUSTOM_STYLE]-->" onclick="<!--[CUSTOM_CLICK]-->"><!--[CUSTOM_TITLE]--></button>
     21            <button class="btn btn-default enp-button cust-pl-btn" style="<!--[BUTTON_STYLE]-->" onclick="<!--[BUTTON_CLICK]-->"><!--[BUTTON_TITLE]--></button>
    2222        </div>
    2323    </div>
  • plenigo/trunk/plenigo_wordpress.php

    r1999856 r2008626  
    55  Plugin URI: http://wordpress.org/plugins/plenigo/
    66  Description: So far, the technical implementation of paid content has been time-consuming and costly for publishing houses and media companies. plenigo puts an end to this.
    7   Version: 1.8.2
     7  Version: 1.8.4
    88  Author: Plenigo
    99  Author URI: https://www.plenigo.com
     
    1414 */
    1515/*
    16   Copyright (C) 2017 plenigo
     16  Copyright (C) 2019 plenigo
    1717
    1818  This program is free software; you can redistribute it and/or
     
    3030  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    3131 */
    32 define('PLENIGO_VERSION', '1.8.2');
     32define('PLENIGO_VERSION', '1.8.4');
    3333
    3434// Plenigo JavaScript SDK / Services
  • plenigo/trunk/readme.txt

    r1999856 r2008626  
    44Requires at least: 4.0.0
    55Tested up to: 5.0.2
    6 Stable tag: 1.8.2
     6Stable tag: 1.8.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.