@@ 486-489 (lines=4) @@ | ||
483 | function do_action($tag, $arg = '') { |
|
484 | global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter; |
|
485 | ||
486 | if ( ! isset($wp_actions[$tag]) ) |
|
487 | $wp_actions[$tag] = 1; |
|
488 | else |
|
489 | ++$wp_actions[$tag]; |
|
490 | ||
491 | // Do 'all' actions first |
|
492 | if ( isset($wp_filter['all']) ) { |
|
@@ 570-573 (lines=4) @@ | ||
567 | function do_action_ref_array($tag, $args) { |
|
568 | global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter; |
|
569 | ||
570 | if ( ! isset($wp_actions[$tag]) ) |
|
571 | $wp_actions[$tag] = 1; |
|
572 | else |
|
573 | ++$wp_actions[$tag]; |
|
574 | ||
575 | // Do 'all' actions first |
|
576 | if ( isset($wp_filter['all']) ) { |