Dashboard: Add missing URL to "Help with testing" link in Gutenberg callout.
See #41316. Built from https://develop.svn.wordpress.org/trunk@41931 git-svn-id: http://core.svn.wordpress.org/trunk@41765 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b65d6eb680
commit
15c8976cc4
|
@ -1658,8 +1658,17 @@ function wp_try_gutenberg_panel() {
|
|||
<div class="try-gutenberg-panel-column try-gutenberg-panel-last">
|
||||
<h3><?php _e( 'Want to get involved?' ); ?></h3>
|
||||
<ul>
|
||||
<li><?php printf( __( 'Learn more about the project <a href="%s">codenamed Gutenberg</a>.' ), 'https://wordpress.org/gutenberg/' ); ?></li>
|
||||
<li><?php printf( __( 'Help <a href="%1$s">with testing</a>, or contribute on the <a href="%2$s">GitHub repository</a>.' ), '', 'https://github.com/WordPress/gutenberg/' ); ?></li>
|
||||
<li><?php
|
||||
printf( __( 'Learn more about the project <a href="%s">codenamed Gutenberg</a>.' ),
|
||||
'https://wordpress.org/gutenberg/'
|
||||
);
|
||||
?></li>
|
||||
<li><?php
|
||||
printf( __( 'Help <a href="%1$s">with testing</a>, or contribute on the <a href="%2$s">GitHub repository</a>.' ),
|
||||
__( 'https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/' ),
|
||||
'https://github.com/WordPress/gutenberg/'
|
||||
);
|
||||
?></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-beta2-41930';
|
||||
$wp_version = '4.9-beta2-41931';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue