Make WordPress Core


Ignore:
Timestamp:
10/14/2009 08:46:09 PM (15 years ago)
Author:
westi
Message:

Page Templates now have there full path specified so no need to prepend WP_CONTENT_DIR. Fixes #10953 props sivel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/theme.php

    r12025 r12033  
    132132    if ( is_array( $templates ) ) {
    133133        foreach ( $templates as $template ) {
    134             $template_data = implode( '', file( WP_CONTENT_DIR.$template ));
     134            $template_data = implode( '', file( $template ));
    135135
    136136            $name = '';
Note: See TracChangeset for help on using the changeset viewer.