Changeset 32050
- Timestamp:
- 04/05/2015 05:16:20 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r32049 r32050 2180 2180 * 2181 2181 * @param string $table Table name. 2182 * @return string|WP_Error Table character set, {@see WP_Error}object if it couldn't be found.2182 * @return string|WP_Error Table character set, WP_Error object if it couldn't be found. 2183 2183 */ 2184 2184 protected function get_table_charset( $table ) { … … 2280 2280 * @param string $column Column name. 2281 2281 * @return mixed Column character set as a string. False if the column has no 2282 * character set. {@see WP_Error}object if there was an error.2282 * character set. WP_Error object if there was an error. 2283 2283 */ 2284 2284 public function get_col_charset( $table, $column ) { … … 2371 2371 * each value. This works as a passthrough: any additional keys 2372 2372 * such as 'field' are retained in each value array. If we cannot 2373 * remove invalid characters, a {@see WP_Error}object is returned.2373 * remove invalid characters, a WP_Error object is returned. 2374 2374 */ 2375 2375 protected function strip_invalid_text( $data ) { … … 2504 2504 * 2505 2505 * @param string $query Query to convert. 2506 * @return string|WP_Error The converted query, or a {@see WP_Error}object if the conversion fails.2506 * @return string|WP_Error The converted query, or a WP_Error object if the conversion fails. 2507 2507 */ 2508 2508 protected function strip_invalid_text_from_query( $query ) { … … 2545 2545 * @param string $column Column name. 2546 2546 * @param string $value The text to check. 2547 * @return string|WP_Error The converted string, or a `WP_Error`object if the conversion fails.2547 * @return string|WP_Error The converted string, or a WP_Error object if the conversion fails. 2548 2548 */ 2549 2549 public function strip_invalid_text_for_column( $table, $column, $value ) {
Note: See TracChangeset
for help on using the changeset viewer.