Changeset 1859122
- Timestamp:
- 04/16/2018 02:12:41 PM (8 years ago)
- Location:
- freshchat
- Files:
-
- 4 edited
- 3 copied
-
tags/2.2.1 (copied) (copied from freshchat/trunk)
-
tags/2.2.1/Readme.txt (copied) (copied from freshchat/trunk/Readme.txt) (1 diff)
-
tags/2.2.1/freshchat.php (copied) (copied from freshchat/trunk/freshchat.php) (1 diff)
-
tags/2.2.1/widget-settings/add_to_page.php (modified) (2 diffs)
-
trunk/Readme.txt (modified) (1 diff)
-
trunk/freshchat.php (modified) (1 diff)
-
trunk/widget-settings/add_to_page.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
freshchat/tags/2.2.1/Readme.txt
r1858977 r1859122 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.2.4 8 Stable tag: 2.2. 08 Stable tag: 2.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
freshchat/tags/2.2.1/freshchat.php
r1858977 r1859122 2 2 /* 3 3 Plugin Name: Freshchat 4 Version: 2.2. 04 Version: 2.2.1 5 5 Author: Freshchat 6 6 Description: Modern messaging software that your sales and customer engagement teams will love. -
freshchat/tags/2.2.1/widget-settings/add_to_page.php
r1858976 r1859122 2 2 3 3 // Add the Freshchat Javascript 4 // Add our snippet before the body tag close5 4 add_action('wp_footer', 'add_fc'); 6 5 … … 13 12 $sanitized_email = sanitize_email($current_user->user_email); 14 13 echo "<script>\n"; 15 echo "window.fcSettings.externalId ='".sanitize_text_field($current_user-> user_pass)."';\n";14 echo "window.fcSettings.externalId ='".sanitize_text_field($current_user->$sanitized_email)."';\n"; 16 15 echo "window.fcSettings.restoreId ='".sanitize_text_field($user_meta[0])."';\n"; 17 16 echo "window.fcSettings.onInit = function() { -
freshchat/trunk/Readme.txt
r1858977 r1859122 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.2.4 8 Stable tag: 2.2. 08 Stable tag: 2.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
freshchat/trunk/freshchat.php
r1858977 r1859122 2 2 /* 3 3 Plugin Name: Freshchat 4 Version: 2.2. 04 Version: 2.2.1 5 5 Author: Freshchat 6 6 Description: Modern messaging software that your sales and customer engagement teams will love. -
freshchat/trunk/widget-settings/add_to_page.php
r1858976 r1859122 2 2 3 3 // Add the Freshchat Javascript 4 // Add our snippet before the body tag close5 4 add_action('wp_footer', 'add_fc'); 6 5 … … 13 12 $sanitized_email = sanitize_email($current_user->user_email); 14 13 echo "<script>\n"; 15 echo "window.fcSettings.externalId ='".sanitize_text_field($current_user-> user_pass)."';\n";14 echo "window.fcSettings.externalId ='".sanitize_text_field($current_user->$sanitized_email)."';\n"; 16 15 echo "window.fcSettings.restoreId ='".sanitize_text_field($user_meta[0])."';\n"; 17 16 echo "window.fcSettings.onInit = function() {
Note: See TracChangeset
for help on using the changeset viewer.