Make WordPress Core

Ticket #33397: 33397.6.patch

File 33397.6.patch, 724 bytes (added by egill, 10 years ago)

wrapping constants in a DocBlock template

  • src/wp-includes/default-constants.php

     
    9595        // Constants for features added to WP that should short-circuit their plugin implementations
    9696        define( 'WP_FEATURE_BETTER_PASSWORDS', true );
    9797
    98         /**
     98        /**#@+
    9999         * Constants for expressing human-readable intervals
    100100         * in their respective number of seconds.
    101101         *
     
    111111        define( 'WEEK_IN_SECONDS',    7 * DAY_IN_SECONDS    );
    112112        define( 'MONTH_IN_SECONDS',  30 * DAY_IN_SECONDS    );
    113113        define( 'YEAR_IN_SECONDS',  365 * DAY_IN_SECONDS    );
     114        /**#@-*/
    114115}
    115116
    116117/**