Changeset 2850634
- Timestamp:
- 01/18/2023 05:09:12 PM (3 years ago)
- Location:
- fast-flow-dashboard/trunk
- Files:
-
- 4 edited
-
fastflow.php (modified) (1 diff)
-
includes/fast-tagger-init.php (modified) (1 diff)
-
includes/fast-tagger-users-functions.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fast-flow-dashboard/trunk/fastflow.php
r2770067 r2850634 5 5 * Plugin URI: https://fastflow.io 6 6 * Description: User tagging and dashboard plugin for Fast Flow system 7 * Version: 1.2.1 37 * Version: 1.2.15 8 8 * Author: FastFlow.io 9 9 * Author URI: https://fastflow.io -
fast-flow-dashboard/trunk/includes/fast-tagger-init.php
r2769680 r2850634 141 141 142 142 $new_term = get_term_by('name', $create_term_name, 'fast_tag', ARRAY_A); 143 if(!$new_term){ 144 $new_term = get_term_by('slug', $create_term_name, 'fast_tag', ARRAY_A); 145 } 143 146 144 147 } -
fast-flow-dashboard/trunk/includes/fast-tagger-users-functions.php
r2537613 r2850634 113 113 114 114 $user_tags = wp_get_object_terms($user->ID, 'fast_tag'); 115 115 $user_tag_ids = []; 116 116 foreach ($user_tags as $user_tag) { 117 117 118 118 $user_tag_ids[] = $user_tag->term_id; 119 119 120 } //$user_tags as $user_tag120 } 121 121 122 122 $terms = get_terms($args); -
fast-flow-dashboard/trunk/readme.txt
r2780162 r2850634 65 65 == Changelog == 66 66 67 = 1.2.15 = 68 69 Remove commented out code causing bug on some dashboards 70 71 = 1.2.14 = 72 73 Fix for ftag parameter 67 74 68 75 = 1.2.13 =
Note: See TracChangeset
for help on using the changeset viewer.