Make WordPress Core


Ignore:
Timestamp:
03/06/2009 04:17:57 PM (16 years ago)
Author:
azaozz
Message:

Don't use mb_* functions to match file extension, fixes #9289

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/plugin-editor.php

    r10627 r10734  
    9292    if ( ! $error ) {
    9393        $content = file_get_contents( $real_file );
    94        
    95         if ( 'php' == mb_substr( $real_file, mb_strrpos( $real_file, '.' ) + 1 ) ) {
     94
     95        if ( '.php' == substr( $real_file, strrpos( $real_file, '.' ) ) ) {
    9696            $functions = wp_doc_link_parse( $content );
    97            
     97
    9898            $docs_select = '<select name="docs-list" id="docs-list">';
    9999            $docs_select .= '<option value="">' . __( 'Function Name...' ) . '</option>';
     
    103103            $docs_select .= '</select>';
    104104        }
    105        
     105
    106106        $content = htmlspecialchars( $content );
    107107        $codepress_lang = codepress_get_lang($real_file);
Note: See TracChangeset for help on using the changeset viewer.