Make WordPress Core

Ticket #34594: 34594.0.patch

File 34594.0.patch, 562 bytes (added by bordoni, 11 years ago)

Patch Fixing the possible typo

  • src/wp-includes/class-wp-customize-manager.php

    diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php
    index 55acd10..6507587 100644
    a b final class WP_Customize_Manager {  
    13021302         */
    13031303        protected function _cmp_priority( $a, $b ) {
    13041304                if ( $a->priority === $b->priority ) {
    1305                         return $a->instance_number - $a->instance_number;
     1305                        return $a->instance_number - $b->instance_number;
    13061306                } else {
    13071307                        return $a->priority - $b->priority;
    13081308                }