Changeset 1822323
- Timestamp:
- 02/14/2018 08:44:51 PM (8 years ago)
- Location:
- userecho
- Files:
-
- 2 edited
- 3 copied
-
tags/1.0.13 (copied) (copied from userecho/trunk)
-
tags/1.0.13/readme.txt (copied) (copied from userecho/trunk/readme.txt) (2 diffs)
-
tags/1.0.13/userecho.php (copied) (copied from userecho/trunk/userecho.php) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/userecho.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
userecho/tags/1.0.13/readme.txt
r1822317 r1822323 5 5 Requires at least: 2.8 6 6 Tested up to: 4.9.4 7 Stable tag: 1.0.1 27 Stable tag: 1.0.13 8 8 9 9 Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO. … … 45 45 == Changelog == 46 46 47 = 1.0.13 = 48 * bug fixes 47 49 = 1.0.12 = 48 50 * SSO integration - fix bugs in some specific cases -
userecho/tags/1.0.13/userecho.php
r1822317 r1822323 2 2 /* 3 3 Plugin Name: UserEcho for Wordpress - collect feedback for your blog 4 Version: 1.0.1 24 Version: 1.0.13 5 5 Plugin URI: https://userecho.com 6 6 Author: UserEcho … … 43 43 public function get_current_user(){ 44 44 #global $current_user; 45 if (empty( $this->$current_user->ID ) ){45 if (empty( $this->$current_user->ID ) && function_exists('wp_get_current_user')){ 46 46 $this->$current_user = wp_get_current_user(); 47 47 } -
userecho/trunk/readme.txt
r1822317 r1822323 5 5 Requires at least: 2.8 6 6 Tested up to: 4.9.4 7 Stable tag: 1.0.1 27 Stable tag: 1.0.13 8 8 9 9 Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO. … … 45 45 == Changelog == 46 46 47 = 1.0.13 = 48 * bug fixes 47 49 = 1.0.12 = 48 50 * SSO integration - fix bugs in some specific cases -
userecho/trunk/userecho.php
r1822317 r1822323 2 2 /* 3 3 Plugin Name: UserEcho for Wordpress - collect feedback for your blog 4 Version: 1.0.1 24 Version: 1.0.13 5 5 Plugin URI: https://userecho.com 6 6 Author: UserEcho … … 43 43 public function get_current_user(){ 44 44 #global $current_user; 45 if (empty( $this->$current_user->ID ) ){45 if (empty( $this->$current_user->ID ) && function_exists('wp_get_current_user')){ 46 46 $this->$current_user = wp_get_current_user(); 47 47 }
Note: See TracChangeset
for help on using the changeset viewer.