| 383 | |
| 384 | /** |
| 385 | * @ticket 41185 |
| 386 | */ |
| 387 | public function test_current_priority_after_nested_add_action(){ |
| 388 | add_action( 'test_current_priority', array( $this, '_nested_action' ), 99 ); |
| 389 | do_action( 'test_current_priority' ); |
| 390 | remove_action( 'test_current_priority', array( $this, '_other_priority_action' ), 99 ); |
| 391 | remove_action( 'test_current_priority', array( $this, '_nested_action' ), 100 ); |
| 392 | |
| 393 | $this->assertSame( 99, $this->current_priority ); |
| 394 | } |
| 395 | |
| 396 | public function _nested_action() { |
| 397 | add_action( 'test_current_priority', function(){}, 100 ); |
| 398 | |
| 399 | global $wp_filter; |
| 400 | $this->current_priority = $wp_filter[ current_filter() ]->current_priority(); |
| 401 | } |
| 402 | |