Changeset 48320 for trunk/src/wp-includes/ms-blogs.php
- Timestamp:
- 07/05/2020 02:44:37 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-blogs.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-blogs.php
r48200 r48320 399 399 * @param string $option Name of option to add. Expected to not be SQL-escaped. 400 400 * @param mixed $value Optional. Option value, can be anything. Expected to not be SQL-escaped. 401 * @return bool False if option was not added and true if option was added.401 * @return bool True if the option was added, false otherwise. 402 402 */ 403 403 function add_blog_option( $id, $option, $value ) { … … 426 426 * @param int $id A blog ID. Can be null to refer to the current blog. 427 427 * @param string $option Name of option to remove. Expected to not be SQL-escaped. 428 * @return bool True , if option is successfully deleted. False on failure.428 * @return bool True if the option was deleted, false otherwise. 429 429 */ 430 430 function delete_blog_option( $id, $option ) { … … 455 455 * @param mixed $value The option value. 456 456 * @param mixed $deprecated Not used. 457 * @return bool True on success, false on failure.457 * @return bool True if the value was updated, false otherwise. 458 458 */ 459 459 function update_blog_option( $id, $option, $value, $deprecated = null ) {
Note: See TracChangeset
for help on using the changeset viewer.