Changeset 2008626
- Timestamp:
- 01/08/2019 07:36:11 PM (7 years ago)
- Location:
- plenigo/trunk
- Files:
-
- 6 edited
-
plenigo_plugin/PlenigoContentManager.php (modified) (2 diffs)
-
plenigo_plugin/PlenigoShortcodeManager.php (modified) (2 diffs)
-
plenigo_plugin/wooCommerce/WC_Gateway_Plenigo.php (modified) (1 diff)
-
plenigo_template/plenigo-curtain-single.html (modified) (1 diff)
-
plenigo_wordpress.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
plenigo/trunk/plenigo_plugin/PlenigoContentManager.php
r1999856 r2008626 896 896 // checkout snippet 897 897 $buyOnClick = $checkoutBuilder->build($coSettings, null, $useRegister); 898 899 $buyOnClick = htmlspecialchars ( $buyOnClick, ENT_QUOTES, 'UTF-8', false ); 900 898 901 } 899 902 if (stristr($html, self::REPLACE_PRODUCT_NAME) !== FALSE || … … 910 913 $loginOnClick = $this->get_regular_login(); 911 914 } 915 916 $loginOnClick = htmlspecialchars ( $loginOnClick, ENT_QUOTES, 'UTF-8', false ); 912 917 } 913 918 } catch (\Exception $exc) { -
plenigo/trunk/plenigo_plugin/PlenigoShortcodeManager.php
r1999856 r2008626 207 207 $loginSnippet = PlenigoSDKManager::get()->getLoginSnippet(); 208 208 209 $loginSnippet = htmlspecialchars ( $loginSnippet, ENT_QUOTES, 'UTF-8', false ); 210 209 211 if (empty($targetUrl) && isset($_GET["redirect"])) { 210 212 $targetUrl = $_GET["redirect"]; … … 842 844 } 843 845 $checkoutSnippet = $this->buildCheckoutSnippet($atts, $tag, $prodId); 846 847 $checkoutSnippet = htmlspecialchars ($checkoutSnippet, ENT_QUOTES, 'UTF-8',false); 844 848 845 849 // $checkoutSnippet = substr_replace('"', '"', $checkoutSnippet); -
plenigo/trunk/plenigo_plugin/wooCommerce/WC_Gateway_Plenigo.php
r1999856 r2008626 200 200 try { 201 201 $checkoutSnippet.= $checkoutBuilder->build($coSettings); 202 $checkoutSnippet = htmlspecialchars ($checkoutSnippet, ENT_QUOTES, 'UTF-8',false); 203 202 204 } catch (Exception $exc) { 203 205 plenigo_log_message($exc->getMessage() . ': ' . $exc->getTraceAsString(), E_USER_WARNING); -
plenigo/trunk/plenigo_template/plenigo-curtain-single.html
r1999856 r2008626 17 17 18 18 <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> 22 22 </div> 23 23 </div> -
plenigo/trunk/plenigo_wordpress.php
r1999856 r2008626 5 5 Plugin URI: http://wordpress.org/plugins/plenigo/ 6 6 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. 27 Version: 1.8.4 8 8 Author: Plenigo 9 9 Author URI: https://www.plenigo.com … … 14 14 */ 15 15 /* 16 Copyright (C) 201 7plenigo16 Copyright (C) 2019 plenigo 17 17 18 18 This program is free software; you can redistribute it and/or … … 30 30 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 31 31 */ 32 define('PLENIGO_VERSION', '1.8. 2');32 define('PLENIGO_VERSION', '1.8.4'); 33 33 34 34 // Plenigo JavaScript SDK / Services -
plenigo/trunk/readme.txt
r1999856 r2008626 4 4 Requires at least: 4.0.0 5 5 Tested up to: 5.0.2 6 Stable tag: 1.8. 26 Stable tag: 1.8.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.