Changeset 2164877
- Timestamp:
- 09/28/2019 01:38:54 PM (7 years ago)
- Location:
- wp-issues-crm
- Files:
-
- 3 edited
- 14 copied
-
tags/4.5.3.3 (copied) (copied from wp-issues-crm/trunk)
-
tags/4.5.3.3/css/activity.css (copied) (copied from wp-issues-crm/trunk/css/activity.css)
-
tags/4.5.3.3/css/dashboard.css (copied) (copied from wp-issues-crm/trunk/css/dashboard.css)
-
tags/4.5.3.3/js/activity.js (copied) (copied from wp-issues-crm/trunk/js/activity.js)
-
tags/4.5.3.3/js/ajax.js (copied) (copied from wp-issues-crm/trunk/js/ajax.js)
-
tags/4.5.3.3/js/dashboard.js (copied) (copied from wp-issues-crm/trunk/js/dashboard.js)
-
tags/4.5.3.3/js/selectmenu.js (copied) (copied from wp-issues-crm/trunk/js/selectmenu.js)
-
tags/4.5.3.3/php/db/class-wic-db-access-wp.php (copied) (copied from wp-issues-crm/trunk/php/db/class-wic-db-access-wp.php)
-
tags/4.5.3.3/php/entity/class-wic-entity-activity.php (copied) (copied from wp-issues-crm/trunk/php/entity/class-wic-entity-activity.php) (1 diff)
-
tags/4.5.3.3/php/entity/class-wic-entity-dashboard.php (copied) (copied from wp-issues-crm/trunk/php/entity/class-wic-entity-dashboard.php)
-
tags/4.5.3.3/php/entity/class-wic-entity-upload-upload.php (copied) (copied from wp-issues-crm/trunk/php/entity/class-wic-entity-upload-upload.php)
-
tags/4.5.3.3/readme.txt (copied) (copied from wp-issues-crm/trunk/readme.txt) (2 diffs)
-
tags/4.5.3.3/sql/wic_data_dictionary_and_field_groups.sql (copied) (copied from wp-issues-crm/trunk/sql/wic_data_dictionary_and_field_groups.sql)
-
tags/4.5.3.3/wp-issues-crm.php (copied) (copied from wp-issues-crm/trunk/wp-issues-crm.php) (1 diff)
-
trunk/php/entity/class-wic-entity-activity.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-issues-crm.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-issues-crm/tags/4.5.3.3/php/entity/class-wic-entity-activity.php
r2160765 r2164877 164 164 $shortened_note = ''; 165 165 166 $user = get_user_by ( 'id', $activity->last_updated_by ); 167 $display_name = is set ( $user->display_name ) ? $user->display_name : $user->user_login;166 $user = get_user_by ( 'id', $activity->last_updated_by ); 167 $display_name = is_object ( $user ) ? ( isset( $user->display_name ) ? $user->display_name : $user->user_login ) : 'Deleted User'; 168 168 169 169 if ( 'wic_reserved_77777777' == $activity->activity_type ) { -
wp-issues-crm/tags/4.5.3.3/readme.txt
r2160765 r2164877 5 5 Requires at least: 5 6 6 Tested up to: 5.2.1 7 Stable tag: 4.5.3. 27 Stable tag: 4.5.3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 107 107 108 108 109 == Changelog == 109 == Changelog == 110 = 4.5.3.3 = 111 * Display 'deleted user' if missing user for activity popup 110 112 = 4.5.3.2 = 111 113 * Expose last_updated_by, last_updated_time in activity popup -
wp-issues-crm/tags/4.5.3.3/wp-issues-crm.php
r2160765 r2164877 4 4 * Plugin URI: http://wp-issues-crm.com 5 5 * Description: Constituent Relationship Management for organizations that respond to constituents. Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories. 6 * Version: 4.5.3. 26 * Version: 4.5.3.3 7 7 * Author: Will Brownsberger 8 8 * Author URI: http://willbrownsberger.com -
wp-issues-crm/trunk/php/entity/class-wic-entity-activity.php
r2160765 r2164877 164 164 $shortened_note = ''; 165 165 166 $user = get_user_by ( 'id', $activity->last_updated_by ); 167 $display_name = is set ( $user->display_name ) ? $user->display_name : $user->user_login;166 $user = get_user_by ( 'id', $activity->last_updated_by ); 167 $display_name = is_object ( $user ) ? ( isset( $user->display_name ) ? $user->display_name : $user->user_login ) : 'Deleted User'; 168 168 169 169 if ( 'wic_reserved_77777777' == $activity->activity_type ) { -
wp-issues-crm/trunk/readme.txt
r2160765 r2164877 5 5 Requires at least: 5 6 6 Tested up to: 5.2.1 7 Stable tag: 4.5.3. 27 Stable tag: 4.5.3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 107 107 108 108 109 == Changelog == 109 == Changelog == 110 = 4.5.3.3 = 111 * Display 'deleted user' if missing user for activity popup 110 112 = 4.5.3.2 = 111 113 * Expose last_updated_by, last_updated_time in activity popup -
wp-issues-crm/trunk/wp-issues-crm.php
r2160765 r2164877 4 4 * Plugin URI: http://wp-issues-crm.com 5 5 * Description: Constituent Relationship Management for organizations that respond to constituents. Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories. 6 * Version: 4.5.3. 26 * Version: 4.5.3.3 7 7 * Author: Will Brownsberger 8 8 * Author URI: http://willbrownsberger.com
Note: See TracChangeset
for help on using the changeset viewer.