Skip to content

Commit

Permalink
Docs: Add a missing parenthesis in an example in the DocBlock for `wp…
Browse files Browse the repository at this point in the history
…_redirect()`.

Props shayanys.
See #37770.

Built from https://develop.svn.wordpress.org/trunk@38350


git-svn-id: http://core.svn.wordpress.org/trunk@38291 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
DrewAPicture committed Aug 25, 2016
1 parent 15edc78 commit f07f1b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wp-includes/pluggable.php
Expand Up @@ -1128,7 +1128,7 @@ function check_ajax_referer( $action = -1, $query_arg = false, $die = true ) {
* Exiting can also be selectively manipulated by using wp_redirect() as a conditional
* in conjunction with the {@see 'wp_redirect'} and {@see 'wp_redirect_location'} hooks:
*
* if ( wp_redirect( $url ) {
* if ( wp_redirect( $url ) ) {
* exit;
* }
*
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Expand Up @@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-alpha-38349';
$wp_version = '4.7-alpha-38350';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit f07f1b1

Please sign in to comment.