Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-constants.php

    r14924 r17804  
    2525    }
    2626
     27    if ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ) {
     28        define( 'WP_MAX_MEMORY_LIMIT', '256M' );
     29    }
     30
    2731    /**
    2832     * The $blog_id global, which you can change in the config allows you to create a simple
     
    273277function wp_templating_constants( ) {
    274278    /**
    275      * Web Path to the current active template directory
     279     * Filesystem path to the current active template directory
    276280     * @since 1.5.0
    277281     */
     
    279283
    280284    /**
    281      * Web Path to the current active template stylesheet directory
     285     * Filesystem path to the current active template stylesheet directory
    282286     * @since 2.1.0
    283287     */
     
    291295     */
    292296    if ( !defined('WP_DEFAULT_THEME') )
    293         define( 'WP_DEFAULT_THEME', 'twentyten' );
     297        define( 'WP_DEFAULT_THEME', 'twentyeleven' );
    294298
    295299}
Note: See TracChangeset for help on using the changeset viewer.