Make WordPress Core


Ignore:
Timestamp:
07/25/2019 01:18:01 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Permalinks: Update URLs for "Changing File Permissions" documentation article.

Props patilswapnilv, ianbelanger, SergeyBiryukov.
Fixes #47768.

File:
1 edited

Legend:

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

    r45612 r45669  
    311311                <pre>{{ data.message }}</pre>
    312312            <# } else if ( 'file_not_writable' === data.code ) { #>
    313                 <p><?php _e( 'You need to make this file writable before you can save your changes. See <a href="https://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.' ); ?></p>
     313                <p>
     314                    <?php
     315                    printf(
     316                        /* translators: %s: Documentation URL */
     317                        __( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ),
     318                        __( 'https://wordpress.org/support/article/changing-file-permissions/' )
     319                    );
     320                    ?>
     321                </p>
    314322            <# } else { #>
    315323                <p>{{ data.message || data.code }}</p>
Note: See TracChangeset for help on using the changeset viewer.