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

Props patilswapnilv, ianbelanger, SergeyBiryukov.
Fixes #47768.

git-svn-id: https://develop.svn.wordpress.org/trunk@45669 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2019-07-25 01:18:01 +00:00
parent 66be571e3a
commit 85f0ec3eba
4 changed files with 33 additions and 9 deletions

View File

@@ -280,7 +280,15 @@ foreach ( $plugins as $plugin_key => $a_plugin ) {
<span class="spinner"></span>
</p>
<?php else : ?>
<p><em><?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.' ); ?></em></p>
<p><em>
<?php
printf(
/* translators: %s: Documentation URL */
__( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ),
__( 'https://wordpress.org/support/article/changing-file-permissions/' )
);
?>
</em></p>
<?php endif; ?>
<?php wp_print_file_editor_templates(); ?>
</form>