Making WordPress.org

Changeset 12012


Ignore:
Timestamp:
08/10/2022 05:03:34 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Support Forums: Improve consistency of various error messages.

  • Use sentence case for the word Error, instead of all caps. Using all caps should be avoided for better readability and because screen readers may pronounce all-caps words as abbreviations.
  • Move the colon of the Error: prefix inside the <strong> tags.

This matches similar changes in WordPress core.

Follow-up to [WP47156], [WP53118], [WP53337], [WP53458], [3702], [3719], [3797], [3937], [4043], [11301], [11382], [11383], [11580].

Props NekoJonez.
Fixes #6309.

Location:
sites/trunk/wordpress.org/public_html/wp-content/plugins
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-moderators.php

    r10660 r12012  
    316316        // Check for empty post id.
    317317        if ( ! $post ) {
    318             bbp_add_error( 'wporg_bbp_archive_post_id', __( '<strong>ERROR</strong>: No post was found! Which post are you archiving?', 'wporg-forums' ) );
     318            bbp_add_error( 'wporg_bbp_archive_post_id', __( '<strong>Error:</strong> No post was found! Which post are you archiving?', 'wporg-forums' ) );
    319319
    320320        // Check for current user.
    321321        } elseif ( empty( $user_id ) ) {
    322             bbp_add_error( 'wporg_bbp_archive_logged_in', __( '<strong>ERROR</strong>: You must be logged in to do this!', 'wporg-forums' ) );
     322            bbp_add_error( 'wporg_bbp_archive_logged_in', __( '<strong>Error:</strong> You must be logged in to do this!', 'wporg-forums' ) );
    323323
    324324        // Check nonce.
    325325        } elseif ( ! bbp_verify_nonce_request( 'toggle-post-archive_' . $user_id . '_' . $post->ID ) ) {
    326             bbp_add_error( 'wporg_bbp_archive_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
     326            bbp_add_error( 'wporg_bbp_archive_nonce', __( '<strong>Error:</strong> Are you sure you wanted to do that?', 'wporg-forums' ) );
    327327
    328328        }
     
    351351            bbp_redirect( $permalink );
    352352        } elseif ( true === $is_archived && 'wporg_bbp_archive_post' === $action ) {
    353             bbp_add_error( 'wporg_bbp_archive_post', __( '<strong>ERROR</strong>: There was a problem archiving that post!', 'wporg-forums' ) );
     353            bbp_add_error( 'wporg_bbp_archive_post', __( '<strong>Error:</strong> There was a problem archiving that post!', 'wporg-forums' ) );
    354354        } elseif ( false === $is_archived && 'wporg_bbp_unarchive_post' === $action ) {
    355             bbp_add_error( 'wporg_bbp_unarchive_post', __( '<strong>ERROR</strong>: There was a problem unarchiving that post!', 'wporg-forums' ) );
     355            bbp_add_error( 'wporg_bbp_unarchive_post', __( '<strong>Error:</strong> There was a problem unarchiving that post!', 'wporg-forums' ) );
    356356        }
    357357    }
     
    712712        $topic = bbp_get_topic( $topic_id );
    713713        if ( empty( $topic ) ) {
    714             bbp_add_error( 'bbp_toggle_topic_missing', __( '<strong>ERROR:</strong> This topic could not be found or no longer exists.', 'wporg-forums' ) );
     714            bbp_add_error( 'bbp_toggle_topic_missing', __( '<strong>Error:</strong> This topic could not be found or no longer exists.', 'wporg-forums' ) );
    715715            return;
    716716        }
     
    718718        // What is the user doing here?
    719719        if ( ! current_user_can( 'edit_topic', $topic_id ) ) {
    720             bbp_add_error( 'bbp_toggle_topic_permission', __( '<strong>ERROR:</strong> You do not have permission to do that.', 'wporg-forums' ) );
     720            bbp_add_error( 'bbp_toggle_topic_permission', __( '<strong>Error:</strong> You do not have permission to do that.', 'wporg-forums' ) );
    721721            return;
    722722        }
     
    776776        $reply = bbp_get_reply( $reply_id );
    777777        if ( empty( $reply ) ) {
    778             bbp_add_error( 'bbp_toggle_reply_missing', __( '<strong>ERROR:</strong> This reply could not be found or no longer exists.', 'wporg-forums' ) );
     778            bbp_add_error( 'bbp_toggle_reply_missing', __( '<strong>Error:</strong> This reply could not be found or no longer exists.', 'wporg-forums' ) );
    779779            return;
    780780        }
     
    782782        // What is the user doing here?
    783783        if ( ! current_user_can( 'edit_reply', $reply_id ) ) {
    784             bbp_add_error( 'bbp_toggle_reply_permission', __( '<strong>ERROR:</strong> You do not have permission to do that.', 'wporg-forums' ) );
     784            bbp_add_error( 'bbp_toggle_reply_permission', __( '<strong>Error:</strong> You do not have permission to do that.', 'wporg-forums' ) );
    785785            return;
    786786        }
     
    840840                if ( bbp_is_topic_open( $r['id'] ) ) {
    841841                    $retval['status']  = bbp_close_topic( $r['id'] );
    842                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem closing the topic.', 'wporg-forums' );
     842                    $retval['message'] = __( '<strong>Error:</strong> There was a problem closing the topic.', 'wporg-forums' );
    843843                }
    844844
     
    850850                if ( ! bbp_is_topic_open( $r['id'] ) ) {
    851851                    $retval['status']  = bbp_open_topic( $r['id'] );
    852                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem opening the topic.', 'wporg-forums' );
     852                    $retval['message'] = __( '<strong>Error:</strong> There was a problem opening the topic.', 'wporg-forums' );
    853853                }
    854854
     
    860860                if ( ! bbp_is_topic_sticky( $r['id'] ) ) {
    861861                    $retval['status']  = bbp_stick_topic( $r['id'], ! empty( $_GET['super'] ) );
    862                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem sticking the topic.', 'wporg-forums' );
     862                    $retval['message'] = __( '<strong>Error:</strong> There was a problem sticking the topic.', 'wporg-forums' );
    863863                }
    864864
     
    870870                if ( bbp_is_topic_sticky( $r['id'] ) ) {
    871871                    $retval['status']  = bbp_unstick_topic( $r['id'] );
    872                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem unsticking the topic.', 'wporg-forums' );
     872                    $retval['message'] = __( '<strong>Error:</strong> There was a problem unsticking the topic.', 'wporg-forums' );
    873873                }
    874874
     
    880880                if ( ! bbp_is_topic_spam( $r['id'] ) ) {
    881881                    $retval['status']  = bbp_spam_topic( $r['id'] );
    882                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem marking the topic as spam.', 'wporg-forums' );
     882                    $retval['message'] = __( '<strong>Error:</strong> There was a problem marking the topic as spam.', 'wporg-forums' );
    883883                }
    884884                $retval['view_all'] = true;
     
    891891                if ( bbp_is_topic_spam( $r['id'] ) ) {
    892892                    $retval['status']  = bbp_unspam_topic( $r['id'] );
    893                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem unmarking the topic as spam.', 'wporg-forums' );
     893                    $retval['message'] = __( '<strong>Error:</strong> There was a problem unmarking the topic as spam.', 'wporg-forums' );
    894894                }
    895895                $retval['view_all'] = false;
     
    902902                if ( ! bbp_is_topic_pending( $r['id'] ) ) {
    903903                    $retval['status']  = bbp_unapprove_topic( $r['id'] );
    904                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem unapproving the topic.', 'wporg-forums' );
     904                    $retval['message'] = __( '<strong>Error:</strong> There was a problem unapproving the topic.', 'wporg-forums' );
    905905                }
    906906                $retval['view_all'] = true;
     
    913913                if ( bbp_is_topic_pending( $r['id'] ) ) {
    914914                    $retval['status']  = bbp_approve_topic( $r['id'] );
    915                     $retval['message'] = __( '<strong>ERROR</strong>: There was a problem approving the topic.', 'wporg-forums' );
     915                    $retval['message'] = __( '<strong>Error:</strong> There was a problem approving the topic.', 'wporg-forums' );
    916916                }
    917917                $retval['view_all'] = false;
     
    953953                if ( ! bbp_is_reply_spam( $r['id'] ) ) {
    954954                    $retval['status']   = bbp_spam_reply( $r['id'] );
    955                     $retval['message']  = __( '<strong>ERROR</strong>: There was a problem marking the reply as spam.', 'wporg-forums' );
     955                    $retval['message']  = __( '<strong>Error:</strong> There was a problem marking the reply as spam.', 'wporg-forums' );
    956956                }
    957957                $retval['view_all'] = true;
     
    964964                if ( bbp_is_reply_spam( $r['id'] ) ) {
    965965                    $retval['status']   = bbp_unspam_reply( $r['id'] );
    966                     $retval['message']  = __( '<strong>ERROR</strong>: There was a problem unmarking the reply as spam.', 'wporg-forums' );
     966                    $retval['message']  = __( '<strong>Error:</strong> There was a problem unmarking the reply as spam.', 'wporg-forums' );
    967967                }
    968968                $retval['view_all'] = false;
     
    975975                if ( ! bbp_is_reply_pending( $r['id'] ) ) {
    976976                    $retval['status']   = bbp_unapprove_reply( $r['id'] );
    977                     $retval['message']  = __( '<strong>ERROR</strong>: There was a problem unapproving the reply.', 'wporg-forums' );
     977                    $retval['message']  = __( '<strong>Error:</strong> There was a problem unapproving the reply.', 'wporg-forums' );
    978978                }
    979979                $retval['view_all'] = true;
     
    986986                if ( bbp_is_reply_pending( $r['id'] ) ) {
    987987                    $retval['status']   = bbp_approve_reply( $r['id'] );
    988                     $retval['message']  = __( '<strong>ERROR</strong>: There was a problem approving the reply.', 'wporg-forums' );
     988                    $retval['message']  = __( '<strong>Error:</strong> There was a problem approving the reply.', 'wporg-forums' );
    989989                }
    990990                $retval['view_all'] = false;
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-ratings-compat.php

    r11385 r12012  
    363363                sprintf(
    364364                    /* translators: %s: Link to forum user guide explaining this. */
    365                     __( '<strong>Error</strong>: Please <a href="%s">do not add links to your review</a>, keep the review about your experience in text only.', 'wporg-forums' ),
     365                    __( '<strong>Error:</strong> Please <a href="%s">do not add links to your review</a>, keep the review about your experience in text only.', 'wporg-forums' ),
    366366                    'https://wordpress.org/support/forum-user-guide/faq/#why-are-links-not-allowed-in-reviews'
    367367                )
     
    393393        if ( bbpress()->errors->get_error_message( 'bbp_topic_title' ) && empty( $_POST['bbp_topic_title'] ) ) {
    394394            bbpress()->errors->remove( 'bbp_topic_title' );
    395             bbp_add_error( 'bbp_topic_title', __( '<strong>Error</strong>: Your review needs a title.', 'wporg-forums' ) );
     395            bbp_add_error( 'bbp_topic_title', __( '<strong>Error:</strong> Your review needs a title.', 'wporg-forums' ) );
    396396        }
    397397
    398398        if ( bbpress()->errors->get_error_message( 'bbp_topic_content' ) ) {
    399399            bbpress()->errors->remove( 'bbp_topic_content' );
    400             bbp_add_error( 'bbp_topic_content', __( '<strong>Error</strong>: Your review cannot be empty.', 'wporg-forums' ) );
     400            bbp_add_error( 'bbp_topic_content', __( '<strong>Error:</strong> Your review cannot be empty.', 'wporg-forums' ) );
    401401        }
    402402    }
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-stickies-compat.php

    r5960 r12012  
    120120        // Check for empty topic or term id.
    121121        if ( ! $topic || ! $term ) {
    122             bbp_add_error( 'wporg_bbp_sticky_topic_id', __( '<strong>ERROR</strong>: No topic was found! Which topic are you sticking?', 'wporg-forums' ) );
     122            bbp_add_error( 'wporg_bbp_sticky_topic_id', __( '<strong>Error:</strong> No topic was found! Which topic are you sticking?', 'wporg-forums' ) );
    123123
    124124        // Check user.
    125125        } elseif ( ! $this->user_can_stick( $user_id, $term->term_id, $topic->ID ) ) {
    126             bbp_add_error( 'wporg_bbp_sticky_logged_in', __( '<strong>ERROR</strong>: You do not have permission to do this!', 'wporg-forums' ) );
     126            bbp_add_error( 'wporg_bbp_sticky_logged_in', __( '<strong>Error:</strong> You do not have permission to do this!', 'wporg-forums' ) );
    127127
    128128        // Check nonce.
    129129        } elseif( ! bbp_verify_nonce_request( 'toggle-topic-sticky_' . $topic->ID . '_' . $term->term_id ) ) {
    130             bbp_add_error( 'wporg_bbp_sticky_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
     130            bbp_add_error( 'wporg_bbp_sticky_nonce', __( '<strong>Error:</strong> Are you sure you wanted to do that?', 'wporg-forums' ) );
    131131        }
    132132
     
    150150            bbp_redirect( $permalink );
    151151        } elseif ( true === $is_sticky && 'wporg_bbp_stick_compat_topic' == $action ) {
    152             bbp_add_error( 'wporg_bbp_stick_compat_topic', __( '<strong>ERROR</strong>: There was a problem sticking that topic!', 'wporg-forums' ) );
     152            bbp_add_error( 'wporg_bbp_stick_compat_topic', __( '<strong>Error:</strong> There was a problem sticking that topic!', 'wporg-forums' ) );
    153153        } elseif ( false === $is_sticky && 'wporg_bbp_unstick_compat_topic' == $action ) {
    154             bbp_add_error( 'wporg_bbp_unstick_compat_topic', __( '<strong>ERROR</strong>: There was a problem unsticking that topic!', 'wporg-forums' ) );
     154            bbp_add_error( 'wporg_bbp_unstick_compat_topic', __( '<strong>Error:</strong> There was a problem unsticking that topic!', 'wporg-forums' ) );
    155155        }
    156156    }
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-users.php

    r11302 r12012  
    324324            is_email_address_unsafe( $_POST['email'] )
    325325        ) {
    326             bbp_add_error( 'bbp_user_email_invalid', __( '<strong>Error</strong>: That email address cannot be used.', 'wporg-forums' ), array( 'form-field' => 'email' ) );
     326            bbp_add_error( 'bbp_user_email_invalid', __( '<strong>Error:</strong> That email address cannot be used.', 'wporg-forums' ), array( 'form-field' => 'email' ) );
    327327
    328328            // Override the post variable to ensure that bbPress & core doesn't use it.
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php

    r11662 r12012  
    115115        if ( $is_subscribed ) {
    116116            $message = sprintf(
    117                 __( 'You are subscribed to this forum, and will receive emails for future topic activity. <a href="%1$s">Unsubscribe from %2$s.</a>', 'wporg-forums' ),
     117                __( 'You are subscribed to this forum, and will receive emails for future topic activity. <a href="%1$s">Unsubscribe from %2$s</a>.', 'wporg-forums' ),
    118118                self::get_subscription_url( get_current_user_id(), $term->term_id, $this->taxonomy ),
    119119                esc_html( $term->name )
     
    169169
    170170            if ( ! $user_id ) {
    171                 bbp_add_error( 'wporg_bbp_subscribe_invalid_token', __( '<strong>ERROR</strong>: Link expired!', 'wporg-forums' ) );
     171                bbp_add_error( 'wporg_bbp_subscribe_invalid_token', __( '<strong>Error:</strong> Link expired!', 'wporg-forums' ) );
    172172                return false;
    173173            }
     
    206206        // Check for empty term id.
    207207        if ( empty( $user_id ) ) {
    208             bbp_add_error( 'wporg_bbp_subscribe_logged_id', __( '<strong>ERROR</strong>: You must be logged in to do this!', 'wporg-forums' ) );
     208            bbp_add_error( 'wporg_bbp_subscribe_logged_id', __( '<strong>Error:</strong> You must be logged in to do this!', 'wporg-forums' ) );
    209209
    210210        // Check nonce.
    211211        } elseif ( 'token' !== $auth && ! bbp_verify_nonce_request( 'toggle-term-subscription_' . $user_id . '_' . $term_id . '_' . $this->taxonomy ) ) {
    212             bbp_add_error( 'wporg_bbp_subscribe_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
     212            bbp_add_error( 'wporg_bbp_subscribe_nonce', __( '<strong>Error:</strong> Are you sure you wanted to do that?', 'wporg-forums' ) );
    213213
    214214        // Check user's ability to spectate if attempting to subscribe to a term.
    215215        } elseif ( ! user_can( $user_id, 'spectate' ) && 'wporg_bbp_subscribe_term' === $action ) {
    216             bbp_add_error( 'wporg_bbp_subscribe_permissions', __( '<strong>ERROR</strong>: You don\'t have permission to do this!', 'wporg-forums' ) );
     216            bbp_add_error( 'wporg_bbp_subscribe_permissions', __( '<strong>Error:</strong> You don\'t have permission to do this!', 'wporg-forums' ) );
    217217        }
    218218
     
    246246        } elseif ( true === $is_subscribed && 'wporg_bbp_subscribe_term' === $action ) {
    247247            /* translators: Term: topic tag */
    248             bbp_add_error( 'wporg_bbp_subscribe_user', __( '<strong>ERROR</strong>: There was a problem subscribing to that term!', 'wporg-forums' ) );
     248            bbp_add_error( 'wporg_bbp_subscribe_user', __( '<strong>Error:</strong> There was a problem subscribing to that term!', 'wporg-forums' ) );
    249249        } elseif ( false === $is_subscribed && 'wporg_bbp_unsubscribe_term' === $action ) {
    250250            /* translators: Term: topic tag */
    251             bbp_add_error( 'wporg_bbp_unsubscribe_user', __( '<strong>ERROR</strong>: There was a problem unsubscribing from that term!', 'wporg-forums' ) );
     251            bbp_add_error( 'wporg_bbp_unsubscribe_user', __( '<strong>Error:</strong> There was a problem unsubscribing from that term!', 'wporg-forums' ) );
    252252        }
    253253    }
     
    361361%4$s
    362362
    363 To unsubscribe from future emails click here:
     363To unsubscribe from future emails, click here:
    364364####UNSUB_LINK####', 'wporg-forums' ),
    365365            $topic_author_name,
     
    503503%4$s
    504504
    505 To unsubscribe from future emails click here:
     505To unsubscribe from future emails, click here:
    506506####UNSUB_LINK####', 'wporg-forums' ),
    507507            $reply_author_name,
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-topic-resolution/inc/class-plugin.php

    r9479 r12012  
    287287        // Check for empty topic id.
    288288        if ( empty( $topic_id ) || ! $topic ) {
    289             bbp_add_error( 'wporg_bbp_topic_resolution_topic_id', __( '<strong>ERROR</strong>: No topic was found!', 'wporg-forums' ) );
     289            bbp_add_error( 'wporg_bbp_topic_resolution_topic_id', __( '<strong>Error:</strong> No topic was found!', 'wporg-forums' ) );
    290290
    291291        // Check valid resolution.
    292292        } elseif ( ! $this->is_valid_topic_resolution( $resolution ) ) {
    293             bbp_add_error( 'wporg_bbp_topic_resolution_invalid', __( '<strong>ERROR</strong>: That is not a valid topic resolution!', 'wporg-forums' ) );
     293            bbp_add_error( 'wporg_bbp_topic_resolution_invalid', __( '<strong>Error:</strong> That is not a valid topic resolution!', 'wporg-forums' ) );
    294294
    295295        // Check user permissions.
    296296        } elseif ( ! $this->user_can_resolve( $user_id, $topic->ID ) ) {
    297             bbp_add_error( 'wporg_bbp_topic_resolution_permissions', __( '<strong>ERROR</strong>: You don\'t have permission to do this!', 'wporg-forums' ) );
     297            bbp_add_error( 'wporg_bbp_topic_resolution_permissions', __( '<strong>Error:</strong> You don\'t have permission to do this!', 'wporg-forums' ) );
    298298
    299299        // Check nonce.
    300300        } elseif ( ! bbp_verify_nonce_request( 'toggle-topic-resolution_' . $topic->ID ) ) {
    301             bbp_add_error( 'wporg_bbp_topic_resolution_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
     301            bbp_add_error( 'wporg_bbp_topic_resolution_nonce', __( '<strong>Error:</strong> Are you sure you wanted to do that?', 'wporg-forums' ) );
    302302        }
    303303
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-user-moderation/inc/class-plugin.php

    r8117 r12012  
    183183        $post = get_post( $post_id );
    184184        if ( ! $post ) {
    185             bbp_add_error( 'wporg_bbp_flag_post_id', __( '<strong>ERROR</strong>: No post was found! Which topic or reply are you marking for moderation?', 'wporg-forums' ) );
     185            bbp_add_error( 'wporg_bbp_flag_post_id', __( '<strong>Error:</strong> No post was found! Which topic or reply are you marking for moderation?', 'wporg-forums' ) );
    186186
    187187        // Check that user id matches post author
    188188        } elseif ( $post->post_author != intval( $_GET['user_id'] ) ) {
    189             bbp_add_error( 'wporg_bbp_flag_post_user', __( '<strong>ERROR</strong>: That author does not match the flagged post.', 'wporg-forums' ) );
     189            bbp_add_error( 'wporg_bbp_flag_post_user', __( '<strong>Error:</strong> That author does not match the flagged post.', 'wporg-forums' ) );
    190190
    191191        // Check nonce
    192192        } elseif ( ! bbp_verify_nonce_request( 'toggle-flag_' . $post->post_author . '_' . $post->ID ) ) {
    193             bbp_add_error( 'wporg_bbp_flag_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'wporg-forums' ) );
     193            bbp_add_error( 'wporg_bbp_flag_nonce', __( '<strong>Error:</strong> Are you sure you wanted to do that?', 'wporg-forums' ) );
    194194
    195195        // Check current user's ability to moderate
    196196        } elseif ( ! current_user_can( 'moderate' ) ) {
    197             bbp_add_error( 'wporg_bbp_flag_permissions', __( '<strong>ERROR</strong>: You don\'t have permission to moderate that user!', 'wporg-forums' ) );
     197            bbp_add_error( 'wporg_bbp_flag_permissions', __( '<strong>Error:</strong> You don\'t have permission to moderate that user!', 'wporg-forums' ) );
    198198        }
    199199
     
    218218            bbp_redirect( $redirect );
    219219        } elseif ( true === $is_flagged && 'bbp_flag_user' === $action ) {
    220             bbp_add_error( 'wporg_bbp_flag_user', __( '<strong>ERROR</strong>: There was a problem flagging that user!', 'wporg-forums' ) );
     220            bbp_add_error( 'wporg_bbp_flag_user', __( '<strong>Error:</strong> There was a problem flagging that user!', 'wporg-forums' ) );
    221221        } elseif ( false === $is_flagged && 'bbp_unflag_user' == $action ) {
    222             bbp_add_error( 'wporg_bbp_flag_unuser', __( '<strong>ERROR</strong>: There was a problem unflagging that user!', 'wporg-forums' ) );
     222            bbp_add_error( 'wporg_bbp_flag_unuser', __( '<strong>Error:</strong> There was a problem unflagging that user!', 'wporg-forums' ) );
    223223        }
    224224    }
Note: See TracChangeset for help on using the changeset viewer.