Skip to content

Commit aac59dc

Browse files
committed
Regenerate
1 parent 9ec518a commit aac59dc

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

bin/handbook-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"behat-steps": {
99
"title": "Behat Steps",
1010
"slug": "behat-steps",
11-
"markdown_source": "https:\/\/github.com\/wp-cli\/handbook\/blob\/main\/behat-steps.md",
12-
"parent": null
11+
"markdown_source": "https:\/\/github.com\/wp-cli\/handbook\/blob\/main\/references\/behat-steps.md",
12+
"parent": "references"
1313
},
1414
"bug-reports": {
1515
"title": "Bug Reports",
@@ -368,8 +368,8 @@
368368
"internal-api": {
369369
"title": "Internal API",
370370
"slug": "internal-api",
371-
"markdown_source": "https:\/\/github.com\/wp-cli\/handbook\/blob\/main\/internal-api.md",
372-
"parent": null
371+
"markdown_source": "https:\/\/github.com\/wp-cli\/handbook\/blob\/main\/references\/internal-api.md",
372+
"parent": "references"
373373
},
374374
"philosophy": {
375375
"title": "Philosophy",

internal-api/wp-cli-do-hook.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Execute callbacks registered to a given hook.
1111
<div>
1212
<strong>$when</strong> (string) Identifier for the hook.<br />
1313
<strong>...$args</strong> (mixed) Optional. Arguments that will be passed onto the<br /> callback provided by `WP_CLI::add_hook()`.<br />
14-
<strong>@return</strong> (null|mixed) the first optional argument if optional<br />
14+
<strong>@return</strong> (null|mixed) the first optional argument if optional&lt;br /&gt; arguments were passed, otherwise returns null.<br />
1515
</div>
1616

1717

@@ -21,7 +21,6 @@ Execute callbacks registered to a given hook.
2121

2222
See `WP_CLI::add_hook()` for details on WP-CLI's internal hook system.
2323
Commands can provide and call their own hooks.
24-
arguments were passed, otherwise returns null.
2524

2625

2726
*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*

internal-api/wp-cli-utils-esc-like.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ First half of escaping for LIKE special characters % and _ before preparing for
1010

1111
<div>
1212
<strong>$text</strong> (string) The raw text to be escaped. The input typed by the user should have no<br /> extra or deleted slashes.<br />
13-
<strong>@return</strong> (string) in the form of a LIKE phrase. The output is not SQL safe. Call $wpdb::prepare()<br />
13+
<strong>@return</strong> (string) in the form of a LIKE phrase. The output is not SQL safe. Call $wpdb::prepare()&lt;br /&gt; or real_escape next.<br />
1414
</div>
1515

1616

@@ -21,7 +21,6 @@ First half of escaping for LIKE special characters % and _ before preparing for
2121
Use this only before wpdb::prepare() or esc_sql(). Reversing the order is very bad for security.
2222

2323
Copied from core "wp-includes/wp-db.php". Avoids dependency on WP 4.4 wpdb.
24-
or real_escape next.
2524

2625

2726
*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*

0 commit comments

Comments
 (0)