Remove superfluous PHP closing tags

This commit is contained in:
Tetrakern 2024-05-16 21:45:26 +02:00
parent f55425610c
commit 997cf0ac9d
5 changed files with 0 additions and 10 deletions

View File

@ -1462,5 +1462,3 @@ function fictioneer_updated_google_fonts( $old_value, $value ) {
fictioneer_build_bundled_fonts();
}
add_action( 'update_option_fictioneer_google_fonts_links', 'fictioneer_updated_google_fonts', 10, 2 );
?>

View File

@ -68,5 +68,3 @@ function fictioneer_ajax_save_bookmarks() {
if ( get_option( 'fictioneer_enable_bookmarks' ) ) {
add_action( 'wp_ajax_fictioneer_ajax_save_bookmarks', 'fictioneer_ajax_save_bookmarks' );
}
?>

View File

@ -293,5 +293,3 @@ function fictioneer_ajax_get_finished_checkmarks_list() {
if ( get_option( 'fictioneer_enable_checkmarks' ) ) {
add_action( 'wp_ajax_fictioneer_ajax_get_finished_checkmarks_list', 'fictioneer_ajax_get_finished_checkmarks_list' );
}
?>

View File

@ -451,5 +451,3 @@ function fictioneer_ajax_get_follows_list() {
if ( get_option( 'fictioneer_enable_follows' ) ) {
add_action( 'wp_ajax_fictioneer_ajax_get_follows_list', 'fictioneer_ajax_get_follows_list' );
}
?>

View File

@ -219,5 +219,3 @@ function fictioneer_ajax_get_reminders_list() {
if ( get_option( 'fictioneer_enable_reminders' ) ) {
add_action( 'wp_ajax_fictioneer_ajax_get_reminders_list', 'fictioneer_ajax_get_reminders_list' );
}
?>