Make WordPress Core

Ticket #48564: 48564.diff

File 48564.diff, 533 bytes (added by david.binda, 5 years ago)
  • tests/phpunit/tests/actions.php

     
    164164                $val = new stdClass;
    165165
    166166                add_action( $tag, array( &$a, 'action' ) );
    167                 // Ñall the action with PHP 4 notation for passing object by reference.
     167                // Call the action with PHP 4 notation for passing object by reference.
    168168                do_action( $tag, array( &$val ) );
    169169
    170170                $call_count = $a->get_call_count();