Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r10257 r10150  
    229229        $post_data = &$_POST;
    230230
    231     if ( isset($post_data['post_type']) && 'page' == $post_data['post_type'] ) {
     231    if ( 'page' == $post_data['post_type'] ) {
    232232        if ( ! current_user_can( 'edit_pages' ) )
    233233            wp_die( __('You are not allowed to edit pages.') );
     
    237237    }
    238238
    239     $post_IDs = array_map( 'intval', (array) $post_data['post'] );
     239    $post_IDs = array_map( intval, (array) $post_data['post'] );
    240240
    241241    $reset = array( 'post_author', 'post_status', 'post_password', 'post_parent', 'page_template', 'comment_status', 'ping_status', 'keep_private', 'tags_input', 'post_category', 'sticky' );
     
    910910    }
    911911
    912     $post->filter = 'sample';
    913 
    914912    $permalink = get_permalink($post, true);
    915913
     
    929927    $post->post_date = $original_date;
    930928    $post->post_name = $original_name;
    931     unset($post->filter);
    932 
    933929    return $permalink;
    934930}
     
    11661162            if ( ! empty($mce_external_languages) ) {
    11671163                foreach ( $mce_external_languages as $name => $path ) {
    1168                     if ( @is_file($path) && @is_readable($path) ) {
     1164                    if ( is_file($path) && is_readable($path) ) {
    11691165                        include_once($path);
    1170                         $ext_plugins .= $strings . "\n";
     1166                        $ext_plugins .= $strings;
    11711167                        $loaded_langs[] = $name;
    11721168                    }
     
    11891185                        $path = trailingslashit( realpath($path) );
    11901186
    1191                     if ( @is_file($path . $mce_locale . '.js') )
    1192                         $strings .= @file_get_contents($path . $mce_locale . '.js') . "\n";
    1193 
    1194                     if ( @is_file($path . $mce_locale . '_dlg.js') )
    1195                         $strings .= @file_get_contents($path . $mce_locale . '_dlg.js') . "\n";
     1187                    if ( is_file($path . $mce_locale . '.js') )
     1188                        $strings .= @file_get_contents($path . $mce_locale . '.js');
     1189
     1190                    if ( is_file($path . $mce_locale . '_dlg.js') )
     1191                        $strings .= @file_get_contents($path . $mce_locale . '_dlg.js');
    11961192
    11971193                    if ( 'en' != $mce_locale && empty($strings) ) {
    1198                         if ( @is_file($path . 'en.js') ) {
     1194                        if ( is_file($path . 'en.js') ) {
    11991195                            $str1 = @file_get_contents($path . 'en.js');
    1200                             $strings .= preg_replace( '/([\'"])en\./', '$1' . $mce_locale . '.', $str1, 1 ) . "\n";
     1196                            $strings .= preg_replace( '/([\'"])en\./', '$1' . $mce_locale . '.', $str1, 1 );
    12011197                        }
    12021198
    1203                         if ( @is_file($path . 'en_dlg.js') ) {
     1199                        if ( is_file($path . 'en_dlg.js') ) {
    12041200                            $str2 = @file_get_contents($path . 'en_dlg.js');
    1205                             $strings .= preg_replace( '/([\'"])en\./', '$1' . $mce_locale . '.', $str2, 1 ) . "\n";
     1201                            $strings .= preg_replace( '/([\'"])en\./', '$1' . $mce_locale . '.', $str2, 1 );
    12061202                        }
    12071203                    }
Note: See TracChangeset for help on using the changeset viewer.