Changeset 46232 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 09/21/2019 05:40:58 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r46194 r46232 2704 2704 * @since 4.2.0 2705 2705 * 2706 * @param string $charset The character set to use. Default null.2707 * @param string $table The name of the table being checked.2706 * @param string|null $charset The character set to use. Default null. 2707 * @param string $table The name of the table being checked. 2708 2708 */ 2709 2709 $charset = apply_filters( 'pre_get_table_charset', null, $table ); … … 2808 2808 * @since 4.2.0 2809 2809 * 2810 * @param string $charset The character set to use. Default null.2811 * @param string $table The name of the table being checked.2812 * @param string $column The name of the column being checked.2810 * @param string|null $charset The character set to use. Default null. 2811 * @param string $table The name of the table being checked. 2812 * @param string $column The name of the column being checked. 2813 2813 */ 2814 2814 $charset = apply_filters( 'pre_get_col_charset', null, $table, $column );
Note: See TracChangeset
for help on using the changeset viewer.