Make WordPress Core


Ignore:
Timestamp:
07/17/2014 09:13:53 AM (11 years ago)
Author:
DrewAPicture
Message:

Fix syntax for single- and multi-line comments in wp-admin-directory files.

See #28931.

File:
1 edited

Legend:

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

    r28500 r29206  
    8282    $location = 'theme-editor.php?file=' . urlencode( $relative_file ) . '&theme=' . urlencode( $stylesheet ) . '&scrollto=' . $scrollto;
    8383    if ( is_writeable( $file ) ) {
    84         //is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
     84        // is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
    8585        $f = fopen( $file, 'w+' );
    8686        if ( $f !== false ) {
Note: See TracChangeset for help on using the changeset viewer.