Make WordPress Core

Changeset 20480


Ignore:
Timestamp:
04/16/2012 04:15:18 PM (13 years ago)
Author:
nacin
Message:

Fix typo in filter name for wp_die() APP request handler. props benbalter, fixes #20457.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r20453 r20480  
    19751975        $function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' );
    19761976    elseif ( defined( 'APP_REQUEST' ) && APP_REQUEST )
    1977         $function = apply_filters( 'wp_die_app_bandler', '_scalar_wp_die_handler' );
     1977        $function = apply_filters( 'wp_die_app_handler', '_scalar_wp_die_handler' );
    19781978    else
    19791979        $function = apply_filters( 'wp_die_handler', '_default_wp_die_handler' );
Note: See TracChangeset for help on using the changeset viewer.