PluginProbe
User Access Manager / 0.9
User Access Manager v0.9
2.3.20 2.3.19 2.3.18 2.3.17 2.3.16 2.3.15 2.3.14 2.3.13 trunk 0.6 0.6.1 0.6.2 0.7 0.7 Beta 0.7.0.1 0.8 0.8.0.1 0.8.0.2 0.9 0.9.1 0.9.1.1 0.9.1.2 0.9.1.3 0.9.1.4 1.0 All 136 releases
user-access-manager / core_files / wp-admin / includes / template_patch.diff

template_patch.diff in User Access Manager 0.9, at core_files/wp-admin/includes/template_patch.diff

31 lines 880 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 Index: wp-admin/includes/template.php
2 ===================================================================
3 --- wp-admin/includes/template.php 2008-12-10 23:22:30.000000000 +0100
4 +++ wp-admin/includes/template.php 2009-01-02 14:32:54.000000000 +0100
5 @@ -181,7 +181,13 @@
6 case 'posts':
7 $attributes = 'class="posts column-posts num"' . $style;
8 $output .= "<td $attributes>$posts_count</td>\n";
9 + break;
10 + default:
11 + $output .= "<td $attributes>";
12 + $output .= apply_filters('manage_categories_custom_column', $column_name, $qe_data->term_id);
13 + $output .= "</td>";
14 }
15 +
16 }
17 $output .= '</tr>';
18
19 @@ -1867,6 +1873,11 @@
20 $r .= 0;
21 }
22 $r .= "</td>";
23 + break;
24 + default:
25 + $r .= "<td $attributes>";
26 + $r .= apply_filters('manage_users_custom_column', $column_name, $user_object->ID);
27 + $r .= "</td>";
28 }
29 }
30 $r .= '</tr>';
31