Skip to content

Commit

Permalink
Fix system notice for unknown variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Oct 30, 2009
1 parent 087445c commit 6f5780f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/custom_function_api.php
Expand Up @@ -271,7 +271,7 @@ function custom_function_default_print_column_title( $p_column, $p_columns_targe

} else if ( isset( $t_plugin_columns[ $p_column ] ) ) {
$t_column_object = $t_plugin_columns[ $p_column ];
print_column_title_plugin( $t_column_object, $p_sort, $p_dir, $p_columns_target );
print_column_title_plugin( $t_column_object, $t_sort, $t_dir, $p_columns_target );

} else {
echo '<td>';
Expand Down

0 comments on commit 6f5780f

Please sign in to comment.