Skip to:
Content

bbPress.org

Changeset 5496


Ignore:
Timestamp:
09/11/2014 01:53:08 PM (10 years ago)
Author:
johnjamesjacoby
Message:

Embetter Orwellian Newspeak used to describe sticky topics in admin/topics.php. Props netweb. Fixes #2622.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/topics.php

    r5466 r5496  
    531531                        : false;
    532532                    $message   = ( true  === $is_sticky )
    533                         ? 'unsticked'
    534                         : 'sticked';
     533                        ? 'unstuck'
     534                        : 'stuck';
    535535                    $message   = ( true  === $is_super )
    536                         ? 'super_sticked'
     536                        ? 'super_sticky'
    537537                        : $message;
    538538                    $success   = ( true  === $is_sticky )
     
    595595
    596596        // Only proceed if GET is a topic toggle action
    597         if ( bbp_is_get_request() && !empty( $_GET['bbp_topic_toggle_notice'] ) && in_array( $_GET['bbp_topic_toggle_notice'], array( 'opened', 'closed', 'super_sticked', 'sticked', 'unsticked', 'spammed', 'unspammed' ) ) && !empty( $_GET['topic_id'] ) ) {
     597        if ( bbp_is_get_request() && !empty( $_GET['bbp_topic_toggle_notice'] ) && in_array( $_GET['bbp_topic_toggle_notice'], array( 'opened', 'closed', 'super_sticky', 'stuck', 'unstuck', 'spammed', 'unspammed' ) ) && !empty( $_GET['topic_id'] ) ) {
    598598            $notice     = $_GET['bbp_topic_toggle_notice'];         // Which notice?
    599599            $topic_id   = (int) $_GET['topic_id'];                  // What's the topic id?
     
    626626                    break;
    627627
    628                 case 'super_sticked' :
     628                case 'super_sticky' :
    629629                    $message = ( $is_failure === true )
    630630                        ? sprintf( __( 'There was a problem sticking the topic "%1$s" to front.', 'bbpress' ), $topic_title )
    631                         : sprintf( __( 'Topic "%1$s" successfully sticked to front.',             'bbpress' ), $topic_title );
    632                     break;
    633 
    634                 case 'sticked'   :
     631                        : sprintf( __( 'Topic "%1$s" successfully stuck to front.',               'bbpress' ), $topic_title );
     632                    break;
     633
     634                case 'stuck'   :
    635635                    $message = ( $is_failure === true )
    636636                        ? sprintf( __( 'There was a problem sticking the topic "%1$s".', 'bbpress' ), $topic_title )
    637                         : sprintf( __( 'Topic "%1$s" successfully sticked.',             'bbpress' ), $topic_title );
    638                     break;
    639 
    640                 case 'unsticked' :
     637                        : sprintf( __( 'Topic "%1$s" successfully stuck.',               'bbpress' ), $topic_title );
     638                    break;
     639
     640                case 'unstuck' :
    641641                    $message = ( $is_failure === true )
    642642                        ? sprintf( __( 'There was a problem unsticking the topic "%1$s".', 'bbpress' ), $topic_title )
    643                         : sprintf( __( 'Topic "%1$s" successfully unsticked.',             'bbpress' ), $topic_title );
     643                        : sprintf( __( 'Topic "%1$s" successfully unstuck.',               'bbpress' ), $topic_title );
    644644                    break;
    645645
Note: See TracChangeset for help on using the changeset viewer.