Making WordPress.org

Ticket #692: 692.5.diff

File 692.5.diff, 868 bytes (added by DrewAPicture, 10 years ago)

unused code

  • inc/user-content.php

     
    123123                        'textarea_name' => 'comment',
    124124                        'textarea_rows' => 8,
    125125                        'quicktags'     => array(
    126                                 'buttons' => 'strong,em,ul,ol,li,wporg_php,js'
     126                                'buttons' => 'strong,em,ul,ol,li'
    127127                        ),
    128128                        'teeny'         => true,
    129129                        'tinymce'       => false,
     
    132132                return ob_get_clean();
    133133        }
    134134
    135         public static function mce_buttons( $buttons ) {
    136                 $buttons = array_merge( $buttons, array( 'wporg_php' ) );
    137                 return $buttons;
    138         }
    139 
    140         public static function mce_plugins( $plugins ) {
    141                 $plugins['wporg_php'] = get_stylesheet_directory_uri() . '/js/user-notes.js';
    142                 return $plugins;
    143         }
    144135} // DevHub_User_Submitted_Content
    145136
    146137DevHub_User_Submitted_Content::init();