CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-includes/pluggable.php

Summary

Maintainability
F
1 wk
Test Coverage

File pluggable.php has 933 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * These functions can be replaced via plugins. If plugins do not redefine these
 * functions, then these will be used instead.
 *
Severity: Major
Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 2 days to fix

    Function wp_mail has a Cognitive Complexity of 99 (exceeds 5 allowed). Consider refactoring.
    Open

    function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
        // Compact the input, apply the filters, and extract them back out
        extract( apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) ) );
    
        if ( !is_array($attachments) )
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 day to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function wp_salt has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
    Open

    function wp_salt($scheme = 'auth') {
        global $wp_default_secret_key;
        $secret_key = '';
        if ( defined('SECRET_KEY') && ('' != SECRET_KEY) && ( $wp_default_secret_key != SECRET_KEY) )
            $secret_key = SECRET_KEY;
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 day to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_avatar has a Cognitive Complexity of 48 (exceeds 5 allowed). Consider refactoring.
    Open

    function get_avatar( $id_or_email, $size = '96', $default = '', $alt = false ) {
        if ( ! get_option('show_avatars') )
            return false;
    
        if ( false === $alt)
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 7 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method wp_mail has 125 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
        // Compact the input, apply the filters, and extract them back out
        extract( apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) ) );
    
        if ( !is_array($attachments) )
    Severity: Major
    Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 5 hrs to fix

      Function auth_redirect has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
      Open

      function auth_redirect() {
          // Checks if a user is logged in, if not redirects them to the login page
      
          if ( is_ssl() || force_ssl_admin() )
              $secure = true;
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 3 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function wp_notify_postauthor has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
      Open

      function wp_notify_postauthor($comment_id, $comment_type='') {
          $comment = get_comment($comment_id);
          $post    = get_post($comment->comment_post_ID);
          $user    = get_userdata( $post->post_author );
          $current_user = wp_get_current_user();
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 3 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function wp_set_auth_cookie has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

      function wp_set_auth_cookie($user_id, $remember = false, $secure = '') {
          if ( $remember ) {
              $expiration = $expire = time() + apply_filters('auth_cookie_expiration', 1209600, $user_id, $remember);
          } else {
              $expiration = time() + apply_filters('auth_cookie_expiration', 172800, $user_id, $remember);
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 2 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method get_avatar has 64 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function get_avatar( $id_or_email, $size = '96', $default = '', $alt = false ) {
          if ( ! get_option('show_avatars') )
              return false;
      
          if ( false === $alt)
      Severity: Major
      Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 2 hrs to fix

        Method wp_notify_postauthor has 58 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function wp_notify_postauthor($comment_id, $comment_type='') {
            $comment = get_comment($comment_id);
            $post    = get_post($comment->comment_post_ID);
            $user    = get_userdata( $post->post_author );
            $current_user = wp_get_current_user();
        Severity: Major
        Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 2 hrs to fix

          Method wp_salt has 58 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function wp_salt($scheme = 'auth') {
              global $wp_default_secret_key;
              $secret_key = '';
              if ( defined('SECRET_KEY') && ('' != SECRET_KEY) && ( $wp_default_secret_key != SECRET_KEY) )
                  $secret_key = SECRET_KEY;
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 2 hrs to fix

            Method wp_notify_moderator has 51 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function wp_notify_moderator($comment_id) {
                global $wpdb;
            
                if( get_option( "moderation_notify" ) == 0 )
                    return true;
            Severity: Major
            Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 2 hrs to fix

              Function wp_parse_auth_cookie has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
              Open

              function wp_parse_auth_cookie($cookie = '', $scheme = '') {
                  if ( empty($cookie) ) {
                      switch ($scheme){
                          case 'auth':
                              $cookie_name = AUTH_COOKIE;
              Severity: Minor
              Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function wp_text_diff has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
              Open

              function wp_text_diff( $left_string, $right_string, $args = null ) {
                  $defaults = array( 'title' => '', 'title_left' => '', 'title_right' => '' );
                  $args = wp_parse_args( $args, $defaults );
              
                  if ( !class_exists( 'WP_Text_Diff_Renderer_Table' ) )
              Severity: Minor
              Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function wp_validate_auth_cookie has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
              Open

              function wp_validate_auth_cookie($cookie = '', $scheme = '') {
                  if ( ! $cookie_elements = wp_parse_auth_cookie($cookie, $scheme) ) {
                      do_action('auth_cookie_malformed', $cookie, $scheme);
                      return false;
                  }
              Severity: Minor
              Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Method wp_set_auth_cookie has 35 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function wp_set_auth_cookie($user_id, $remember = false, $secure = '') {
                  if ( $remember ) {
                      $expiration = $expire = time() + apply_filters('auth_cookie_expiration', 1209600, $user_id, $remember);
                  } else {
                      $expiration = time() + apply_filters('auth_cookie_expiration', 172800, $user_id, $remember);
              Severity: Minor
              Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

                Method auth_redirect has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function auth_redirect() {
                    // Checks if a user is logged in, if not redirects them to the login page
                
                    if ( is_ssl() || force_ssl_admin() )
                        $secure = true;
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

                  Function get_currentuserinfo has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function get_currentuserinfo() {
                      global $current_user;
                  
                      if ( defined('XMLRPC_REQUEST') && XMLRPC_REQUEST )
                          return false;
                  Severity: Minor
                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

                  Method wp_text_diff has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function wp_text_diff( $left_string, $right_string, $args = null ) {
                      $defaults = array( 'title' => '', 'title_left' => '', 'title_right' => '' );
                      $args = wp_parse_args( $args, $defaults );
                  
                      if ( !class_exists( 'WP_Text_Diff_Renderer_Table' ) )
                  Severity: Minor
                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

                    Method wp_parse_auth_cookie has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function wp_parse_auth_cookie($cookie = '', $scheme = '') {
                        if ( empty($cookie) ) {
                            switch ($scheme){
                                case 'auth':
                                    $cookie_name = AUTH_COOKIE;
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

                      Method wp_validate_auth_cookie has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      function wp_validate_auth_cookie($cookie = '', $scheme = '') {
                          if ( ! $cookie_elements = wp_parse_auth_cookie($cookie, $scheme) ) {
                              do_action('auth_cookie_malformed', $cookie, $scheme);
                              return false;
                          }
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

                        Method get_user_by has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function get_user_by($field, $value) {
                            global $wpdb;
                        
                            switch ($field) {
                                case 'id':
                        Severity: Minor
                        Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 1 hr to fix

                          Function wp_notify_moderator has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function wp_notify_moderator($comment_id) {
                              global $wpdb;
                          
                              if( get_option( "moderation_notify" ) == 0 )
                                  return true;
                          Severity: Minor
                          Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 55 mins to fix

                          Cognitive Complexity

                          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                          A method's cognitive complexity is based on a few simple rules:

                          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                          • Code is considered more complex for each "break in the linear flow of the code"
                          • Code is considered more complex when "flow breaking structures are nested"

                          Further reading

                          Function get_user_by has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function get_user_by($field, $value) {
                              global $wpdb;
                          
                              switch ($field) {
                                  case 'id':
                          Severity: Minor
                          Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 55 mins to fix

                          Cognitive Complexity

                          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                          A method's cognitive complexity is based on a few simple rules:

                          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                          • Code is considered more complex for each "break in the linear flow of the code"
                          • Code is considered more complex when "flow breaking structures are nested"

                          Further reading

                          Method wp_setcookie has 6 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                          function wp_setcookie($username, $password = '', $already_md5 = false, $home = '', $siteurl = '', $remember = false) {
                          Severity: Minor
                          Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 45 mins to fix

                            Function wp_check_password has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                            Open

                            function wp_check_password($password, $hash, $user_id = '') {
                                global $wp_hasher;
                            
                                // If the hash is still md5...
                                if ( strlen($hash) <= 32 ) {
                            Severity: Minor
                            Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 45 mins to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function wp_redirect has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                            Open

                            function wp_redirect($location, $status = 302) {
                                global $is_IIS;
                            
                                $location = apply_filters('wp_redirect', $location, $status);
                                $status = apply_filters('wp_redirect_status', $status, $location);
                            Severity: Minor
                            Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 45 mins to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Method wp_mail has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                            function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
                            Severity: Minor
                            Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 35 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                  return $user;
                              Severity: Major
                              Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                    return $user->ID;
                                Severity: Major
                                Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 30 mins to fix

                                  Function check_ajax_referer has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                  Open

                                  function check_ajax_referer( $action = -1, $query_arg = false, $die = true ) {
                                      if ( $query_arg )
                                          $nonce = $_REQUEST[$query_arg];
                                      else
                                          $nonce = isset($_REQUEST['_ajax_nonce']) ? $_REQUEST['_ajax_nonce'] : $_REQUEST['_wpnonce'];
                                  Severity: Minor
                                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 25 mins to fix

                                  Cognitive Complexity

                                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                                  A method's cognitive complexity is based on a few simple rules:

                                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                                  • Code is considered more complex for each "break in the linear flow of the code"
                                  • Code is considered more complex when "flow breaking structures are nested"

                                  Further reading

                                  Function get_userdata has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                  Open

                                  function get_userdata( $user_id ) {
                                      global $wpdb;
                                  
                                      $user_id = absint($user_id);
                                      if ( $user_id == 0 )
                                  Severity: Minor
                                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php - About 25 mins to fix

                                  Cognitive Complexity

                                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                                  A method's cognitive complexity is based on a few simple rules:

                                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                                  • Code is considered more complex for each "break in the linear flow of the code"
                                  • Code is considered more complex when "flow breaking structures are nested"

                                  Further reading

                                  Similar blocks of code found in 2 locations. Consider refactoring.
                                  Open

                                          case 'pingback':
                                              $notify_message  = sprintf( __('A new pingback on the post #%1$s "%2$s" is waiting for your approval'), $post->ID, $post->post_title ) . "\r\n";
                                              $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n";
                                              $notify_message .= sprintf( __('Website : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
                                              $notify_message .= sprintf( __('URL    : %s'), $comment->comment_author_url ) . "\r\n";
                                  Severity: Major
                                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php and 1 other location - About 3 hrs to fix
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1082..1088

                                  Duplicated Code

                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                  Tuning

                                  This issue has a mass of 156.

                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                  Refactorings

                                  Further Reading

                                  Similar blocks of code found in 2 locations. Consider refactoring.
                                  Open

                                          case 'trackback':
                                              $notify_message  = sprintf( __('A new trackback on the post #%1$s "%2$s" is waiting for your approval'), $post->ID, $post->post_title ) . "\r\n";
                                              $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n";
                                              $notify_message .= sprintf( __('Website : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
                                              $notify_message .= sprintf( __('URL    : %s'), $comment->comment_author_url ) . "\r\n";
                                  Severity: Major
                                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php and 1 other location - About 3 hrs to fix
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1089..1095

                                  Duplicated Code

                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                  Tuning

                                  This issue has a mass of 156.

                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                  Refactorings

                                  Further Reading

                                  Similar blocks of code found in 3 locations. Consider refactoring.
                                  Open

                                      } elseif ( 'secure_auth' == $scheme ) {
                                          if ( defined('SECURE_AUTH_KEY') && ('' != SECURE_AUTH_KEY) && ( $wp_default_secret_key != SECURE_AUTH_KEY) )
                                              $secret_key = SECURE_AUTH_KEY;
                                  
                                          if ( defined('SECURE_AUTH_SALT') ) {
                                  Severity: Major
                                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php and 2 other locations - About 2 hrs to fix
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1328..1341
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1341..1354

                                  Duplicated Code

                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                  Tuning

                                  This issue has a mass of 125.

                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                  Refactorings

                                  Further Reading

                                  Similar blocks of code found in 3 locations. Consider refactoring.
                                  Open

                                      } elseif ( 'logged_in' == $scheme ) {
                                          if ( defined('LOGGED_IN_KEY') && ('' != LOGGED_IN_KEY) && ( $wp_default_secret_key != LOGGED_IN_KEY) )
                                              $secret_key = LOGGED_IN_KEY;
                                  
                                          if ( defined('LOGGED_IN_SALT') ) {
                                  Severity: Major
                                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php and 2 other locations - About 2 hrs to fix
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1315..1328
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1341..1354

                                  Duplicated Code

                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                  Tuning

                                  This issue has a mass of 125.

                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                  Refactorings

                                  Further Reading

                                  Similar blocks of code found in 3 locations. Consider refactoring.
                                  Open

                                      } elseif ( 'nonce' == $scheme ) {
                                          if ( defined('NONCE_KEY') && ('' != NONCE_KEY) && ( $wp_default_secret_key != NONCE_KEY) )
                                              $secret_key = NONCE_KEY;
                                  
                                          if ( defined('NONCE_SALT') ) {
                                  Severity: Major
                                  Found in Web.Admin/2014/wordpress/wp-includes/pluggable.php and 2 other locations - About 2 hrs to fix
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1315..1328
                                  Web.Admin/2014/wordpress/wp-includes/pluggable.php on lines 1328..1341

                                  Duplicated Code

                                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                  Tuning

                                  This issue has a mass of 125.

                                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                  Refactorings

                                  Further Reading

                                  There are no issues that match your filters.

                                  Category
                                  Status