From b2a8ce0a720e2d08f247aacef75de888024ef262 Mon Sep 17 00:00:00 2001
From: "Dominik Schilling (ocean90)"
Date: Fri, 2 Dec 2016 12:02:01 +0000
Subject: [PATCH] About page: Restore the double `%` in a `printf()` call which
has been removed in [39420].
We need this to escape the percent symbol for "100%".
See #38616.
git-svn-id: https://develop.svn.wordpress.org/trunk@39432 602fd350-edb4-49c9-b593-d223f7449a82
---
src/wp-admin/freedoms.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/wp-admin/freedoms.php b/src/wp-admin/freedoms.php
index c3f3ee9949..2aa9537210 100644
--- a/src/wp-admin/freedoms.php
+++ b/src/wp-admin/freedoms.php
@@ -45,7 +45,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
$plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' );
$themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' );
-printf( __( 'Every plugin and theme in WordPress.org’s directory is 100% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they don’t respect the WordPress license, we don’t recommend them.' ), $plugins_url, $themes_url, 'https://wordpress.org/about/license/' ); ?>
+printf( __( 'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they don’t respect the WordPress license, we don’t recommend them.' ), $plugins_url, $themes_url, 'https://wordpress.org/about/license/' ); ?>
Free Software Foundation.' ); ?>