Changeset 2656916
- Timestamp:
- 01/13/2022 12:52:20 AM (4 years ago)
- Location:
- fastcomments
- Files:
-
- 37 added
- 3 edited
-
tags/3.10.1 (added)
-
tags/3.10.1/.gitignore (added)
-
tags/3.10.1/LICENSE (added)
-
tags/3.10.1/README.md (added)
-
tags/3.10.1/README.txt (added)
-
tags/3.10.1/admin (added)
-
tags/3.10.1/admin/fastcomments-admin-advanced-settings-view.js (added)
-
tags/3.10.1/admin/fastcomments-admin-advanced-settings-view.php (added)
-
tags/3.10.1/admin/fastcomments-admin-setup-view.js (added)
-
tags/3.10.1/admin/fastcomments-admin-setup-view.php (added)
-
tags/3.10.1/admin/fastcomments-admin-sso-view.css (added)
-
tags/3.10.1/admin/fastcomments-admin-sso-view.js (added)
-
tags/3.10.1/admin/fastcomments-admin-sso-view.php (added)
-
tags/3.10.1/admin/fastcomments-admin-support-view.php (added)
-
tags/3.10.1/admin/fastcomments-admin-view.php (added)
-
tags/3.10.1/admin/fastcomments-admin.css (added)
-
tags/3.10.1/admin/fastcomments-admin.php (added)
-
tags/3.10.1/admin/images (added)
-
tags/3.10.1/admin/images/api.png (added)
-
tags/3.10.1/admin/images/crown.png (added)
-
tags/3.10.1/admin/images/css.png (added)
-
tags/3.10.1/admin/images/debugging.png (added)
-
tags/3.10.1/admin/images/download.png (added)
-
tags/3.10.1/admin/images/home.png (added)
-
tags/3.10.1/admin/images/logo-50.png (added)
-
tags/3.10.1/admin/images/logo.png (added)
-
tags/3.10.1/admin/images/settings.png (added)
-
tags/3.10.1/admin/images/support.png (added)
-
tags/3.10.1/admin/images/sync.png (added)
-
tags/3.10.1/core (added)
-
tags/3.10.1/core/FastCommentsIntegrationCore.php (added)
-
tags/3.10.1/core/FastCommentsWordPressIntegration.php (added)
-
tags/3.10.1/fastcomments-wordpress-plugin.php (added)
-
tags/3.10.1/public (added)
-
tags/3.10.1/public/fastcomments-public.php (added)
-
tags/3.10.1/public/fastcomments-widget-view.php (added)
-
tags/3.10.1/uninstall.php (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/fastcomments-wordpress-plugin.php (modified) (2 diffs)
-
trunk/public/fastcomments-widget-view.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fastcomments/trunk/README.txt
r2613148 r2656916 4 4 Requires at least: 4.6 5 5 Tested up to: 5.8 6 Stable tag: 3. 9.106 Stable tag: 3.10.1 7 7 Requires PHP: 5.2.4 8 8 License: GPLv2 or later … … 35 35 - Anonymous commenting (unverified comments auto removed after three days) 36 36 - Ability to export your data at any time. 37 - **JavaScript Not Required** to view or leave comments. 37 38 38 39 == Installation == … … 84 85 85 86 == Changelog == 87 88 = 3.10.1 = 89 * JavaScript is no longer required to leave or view comments. 86 90 87 91 = 3.9.10 = -
fastcomments/trunk/fastcomments-wordpress-plugin.php
r2613148 r2656916 4 4 Plugin URI: https://fastcomments.com 5 5 Description: Live Comments, Fast. A comment system that will delight your users and developers. 6 Version: 3. 9.106 Version: 3.10.1 7 7 Author: winrid @ FastComments 8 8 License: GPL-2.0+ … … 14 14 } 15 15 16 $FASTCOMMENTS_VERSION = 3. 910;16 $FASTCOMMENTS_VERSION = 3.101; 17 17 18 18 require_once plugin_dir_path(__FILE__) . 'admin/fastcomments-admin.php'; -
fastcomments/trunk/public/fastcomments-widget-view.php
r2613148 r2656916 39 39 "; 40 40 wp_add_inline_script('fastcomments_widget_embed', $script); 41 42 $tenantIdEncoded = rawurlencode($config['tenantId']); 43 $urlEncoded = rawurlencode($config['url']); 44 $fastcomments_url = "https://fastcomments.com/ssr/comments?tenantId=$tenantIdEncoded&urlId=$urlId&url=$urlEncoded"; 45 if ($config['sso']) { 46 $sso_query_string = rawurlencode(json_encode($config['sso'])); 47 $fastcomments_url = $fastcomments_url . "&sso=$sso_query_string"; 48 } 49 ?> 50 <noscript> 51 <iframe 52 src="<?php echo $fastcomments_url; ?>" 53 horizontalscrolling="no" 54 allowtransparency="true" 55 frameborder="0" 56 title="FastComments" 57 width="100%" 58 height="1500px" 59 style="width: 1px !important; min-width: 100% !important; border: none !important; overflow: hidden !important;" 60 ></iframe> 61 </noscript> 62 <?php 41 63 } 42 64 ?>
Note: See TracChangeset
for help on using the changeset viewer.