diff options
Diffstat (limited to 'plugins/jetpack/modules/after-the-deadline.php')
-rw-r--r-- | plugins/jetpack/modules/after-the-deadline.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/jetpack/modules/after-the-deadline.php b/plugins/jetpack/modules/after-the-deadline.php index c3326e45..446e6f17 100644 --- a/plugins/jetpack/modules/after-the-deadline.php +++ b/plugins/jetpack/modules/after-the-deadline.php @@ -1,12 +1,13 @@ <?php /** * Module Name: Spelling and Grammar - * Module Description: Check your spelling, style, and grammar with the After the Deadline proofreading service. + * Module Description: Check your spelling, style, and grammar. * Sort Order: 6 * First Introduced: 1.1 * Requires Connection: Yes * Auto Activate: Yes * Module Tags: Writing + * Feature: Writing * Additional Search Queries: after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche */ @@ -48,7 +49,7 @@ if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { exit; } function AtD_update_setting( $user_id, $name, $value ) { - update_user_meta( $user_id, $name, $value ); + return update_user_meta( $user_id, $name, $value ); } function AtD_get_setting( $user_id, $name, $single = true ) { return get_user_meta( $user_id, $name, $single ); |