Ticket #59200: 59200.1.patch
File 59200.1.patch, 1.3 KB (added by , 20 months ago) |
---|
-
wp-activate.php
128 128 <?php if ( ! $key ) { ?> 129 129 130 130 <h2><?php _e( 'Activation Key Required' ); ?></h2> 131 <form name="activateform" id="activateform" method="post" action="<?php echo network_site_url( $blog_details->path . 'wp-activate.php'); ?>">131 <form name="activateform" id="activateform" method="post" action="<?php echo esc_url( network_site_url( $blog_details->path . 'wp-activate.php' ) ); ?>"> 132 132 <p> 133 133 <label for="key"><?php _e( 'Activation Key:' ); ?></label> 134 134 <br /><input type="text" name="key" id="key" value="" size="50" autofocus="autofocus" /> -
wp-includes/theme-compat/footer.php
23 23 <?php 24 24 printf( 25 25 /* translators: 1: Site name, 2: WordPress */ 26 __( '%1$s is proudly powered by %2$s' ),26 __( '%1$s is proudly powered by <a href="%2$s">%3$s</a>' ), 27 27 get_bloginfo( 'name' ), 28 '<a href="https://wordpress.org/">WordPress</a>' 28 esc_url( __( 'https://wordpress.org/' ) ), 29 esc_html__( 'WordPress' ) 29 30 ); 30 31 ?> 31 32 </p>