CaffGeek/MBACNationals

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

Summary

Maintainability
F
3 wks
Test Coverage

File post.php has 1927 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Post functions and post utility function.
 *
 * @package WordPress
Severity: Major
Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 5 days to fix

    Function wp_insert_post has a Cognitive Complexity of 90 (exceeds 5 allowed). Consider refactoring.
    Open

    function wp_insert_post($postarr = array(), $wp_error = false) {
        global $wpdb, $wp_rewrite, $user_ID;
    
        $defaults = array('post_status' => 'draft', 'post_type' => 'post', 'post_author' => $user_ID,
            'ping_status' => get_option('default_ping_status'), 'post_parent' => 0,
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/post.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_pages has a Cognitive Complexity of 78 (exceeds 5 allowed). Consider refactoring.
    Open

    function &get_pages($args = '') {
        global $wpdb;
    
        $defaults = array(
            'child_of' => 0, 'sort_order' => 'ASC',
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/post.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_mime_type_icon has a Cognitive Complexity of 67 (exceeds 5 allowed). Consider refactoring.
    Open

    function wp_mime_type_icon( $mime = 0 ) {
        if ( !is_numeric($mime) )
            $icon = wp_cache_get("mime_type_icon_$mime");
        if ( empty($icon) ) {
            $post_id = 0;
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/post.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

    Method wp_insert_post has 168 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function wp_insert_post($postarr = array(), $wp_error = false) {
        global $wpdb, $wp_rewrite, $user_ID;
    
        $defaults = array('post_status' => 'draft', 'post_type' => 'post', 'post_author' => $user_ID,
            'ping_status' => get_option('default_ping_status'), 'post_parent' => 0,
    Severity: Major
    Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 6 hrs to fix

      Function wp_insert_attachment has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
      Open

      function wp_insert_attachment($object, $file = false, $parent = 0) {
          global $wpdb, $user_ID;
      
          $defaults = array('post_status' => 'draft', 'post_type' => 'post', 'post_author' => $user_ID,
              'ping_status' => get_option('default_ping_status'), 'post_parent' => 0,
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 5 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_pages has 126 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function &get_pages($args = '') {
          global $wpdb;
      
          $defaults = array(
              'child_of' => 0, 'sort_order' => 'ASC',
      Severity: Major
      Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 5 hrs to fix

        Function sanitize_post_field has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
        Open

        function sanitize_post_field($field, $value, $post_id, $context) {
            $int_fields = array('ID', 'post_parent', 'menu_order');
            if ( in_array($field, $int_fields) )
                $value = (int) $value;
        
        
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 4 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_insert_attachment has 91 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function wp_insert_attachment($object, $file = false, $parent = 0) {
            global $wpdb, $user_ID;
        
            $defaults = array('post_status' => 'draft', 'post_type' => 'post', 'post_author' => $user_ID,
                'ping_status' => get_option('default_ping_status'), 'post_parent' => 0,
        Severity: Major
        Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 3 hrs to fix

          Method wp_mime_type_icon has 67 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function wp_mime_type_icon( $mime = 0 ) {
              if ( !is_numeric($mime) )
                  $icon = wp_cache_get("mime_type_icon_$mime");
              if ( empty($icon) ) {
                  $post_id = 0;
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 2 hrs to fix

            Function wp_delete_post has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
            Open

            function wp_delete_post( $postid = 0, $force_delete = false ) {
                global $wpdb, $wp_rewrite;
            
                if ( !$post = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d", $postid)) )
                    return $post;
            Severity: Minor
            Found in Web.Admin/2014/wordpress/wp-includes/post.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

            Function get_post has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
            Open

            function &get_post(&$post, $output = OBJECT, $filter = 'raw') {
                global $wpdb;
                $null = null;
            
                if ( empty($post) ) {
            Severity: Minor
            Found in Web.Admin/2014/wordpress/wp-includes/post.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

            Function wp_post_mime_type_where has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
            Open

            function wp_post_mime_type_where($post_mime_types) {
                $where = '';
                $wildcards = array('', '%', '%/%');
                if ( is_string($post_mime_types) )
                    $post_mime_types = array_map('trim', explode(',', $post_mime_types));
            Severity: Minor
            Found in Web.Admin/2014/wordpress/wp-includes/post.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 wp_delete_attachment has 60 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function wp_delete_attachment( $post_id, $force_delete = false ) {
                global $wpdb;
            
                if ( !$post = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d", $post_id) ) )
                    return $post;
            Severity: Major
            Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 2 hrs to fix

              Method wp_delete_post has 59 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function wp_delete_post( $postid = 0, $force_delete = false ) {
                  global $wpdb, $wp_rewrite;
              
                  if ( !$post = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d", $postid)) )
                      return $post;
              Severity: Major
              Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 2 hrs to fix

                Function wp_match_mime_types has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
                Open

                function wp_match_mime_types($wildcard_mime_types, $real_mime_types) {
                    $matches = array();
                    if ( is_string($wildcard_mime_types) )
                        $wildcard_mime_types = array_map('trim', explode(',', $wildcard_mime_types));
                    if ( is_string($real_mime_types) )
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/post.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

                Function get_children has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                Open

                function &get_children($args = '', $output = OBJECT) {
                    $kids = array();
                    if ( empty( $args ) ) {
                        if ( isset( $GLOBALS['post'] ) ) {
                            $args = array('post_parent' => (int) $GLOBALS['post']->post_parent );
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/post.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

                Function wp_delete_attachment has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                Open

                function wp_delete_attachment( $post_id, $force_delete = false ) {
                    global $wpdb;
                
                    if ( !$post = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d", $post_id) ) )
                        return $post;
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/post.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

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

                function sanitize_post($post, $context = 'display') {
                    if ( is_object($post) ) {
                        // Check if post already filtered for this context
                        if ( isset($post->filter) && $context == $post->filter )
                            return $post;
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/post.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 sanitize_post_field has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function sanitize_post_field($field, $value, $post_id, $context) {
                    $int_fields = array('ID', 'post_parent', 'menu_order');
                    if ( in_array($field, $int_fields) )
                        $value = (int) $value;
                
                
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 1 hr to fix

                  Method wp_unique_post_slug has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function wp_unique_post_slug($slug, $post_ID, $post_status, $post_type, $post_parent) {
                      if ( in_array( $post_status, array( 'draft', 'pending' ) ) )
                          return $slug;
                  
                      global $wpdb, $wp_rewrite;
                  Severity: Minor
                  Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 1 hr to fix

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

                    function wp_get_attachment_url( $post_id = 0 ) {
                        $post_id = (int) $post_id;
                        if ( !$post =& get_post( $post_id ) )
                            return false;
                    
                    
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/post.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 get_post_types has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function get_post_types( $args = array(), $output = 'names' ) {
                        global $wp_post_types;
                    
                        $do_names = false;
                        if ( 'names' == $output )
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/post.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 get_post has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function &get_post(&$post, $output = OBJECT, $filter = 'raw') {
                        global $wpdb;
                        $null = null;
                    
                        if ( empty($post) ) {
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 1 hr to fix

                      Method get_children has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      function &get_children($args = '', $output = OBJECT) {
                          $kids = array();
                          if ( empty( $args ) ) {
                              if ( isset( $GLOBALS['post'] ) ) {
                                  $args = array('post_parent' => (int) $GLOBALS['post']->post_parent );
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 1 hr to fix

                        Function wp_unique_post_slug has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                        Open

                        function wp_unique_post_slug($slug, $post_ID, $post_status, $post_type, $post_parent) {
                            if ( in_array( $post_status, array( 'draft', 'pending' ) ) )
                                return $slug;
                        
                            global $wpdb, $wp_rewrite;
                        Severity: Minor
                        Found in Web.Admin/2014/wordpress/wp-includes/post.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_save_post_revision has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                        Open

                        function wp_save_post_revision( $post_id ) {
                            // We do autosaves manually with wp_create_post_autosave()
                            if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
                                return;
                        
                        
                        Severity: Minor
                        Found in Web.Admin/2014/wordpress/wp-includes/post.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_post_mime_type_where has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function wp_post_mime_type_where($post_mime_types) {
                            $where = '';
                            $wildcards = array('', '%', '%/%');
                            if ( is_string($post_mime_types) )
                                $post_mime_types = array_map('trim', explode(',', $post_mime_types));
                        Severity: Minor
                        Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 1 hr to fix

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

                          function get_lastpostmodified($timezone = 'server') {
                              global $cache_lastpostmodified, $wpdb, $blog_id;
                              $add_seconds_server = date('Z');
                              if ( !isset($cache_lastpostmodified[$blog_id][$timezone]) ) {
                                  switch(strtolower($timezone)) {
                          Severity: Minor
                          Found in Web.Admin/2014/wordpress/wp-includes/post.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_put_post_revision has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function _wp_put_post_revision( $post = null, $autosave = false ) {
                              if ( is_object($post) )
                                  $post = get_object_vars( $post );
                              elseif ( !is_array($post) )
                                  $post = get_post($post, ARRAY_A);
                          Severity: Minor
                          Found in Web.Admin/2014/wordpress/wp-includes/post.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_update_post has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function wp_update_post($postarr = array()) {
                              if ( is_object($postarr) ) {
                                  // non-escaped post was passed
                                  $postarr = get_object_vars($postarr);
                                  $postarr = add_magic_quotes($postarr);
                          Severity: Minor
                          Found in Web.Admin/2014/wordpress/wp-includes/post.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 get_enclosed has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function get_enclosed($post_id) {
                              $custom_fields = get_post_custom( $post_id );
                              $pung = array();
                              if ( !is_array( $custom_fields ) )
                                  return $pung;
                          Severity: Minor
                          Found in Web.Admin/2014/wordpress/wp-includes/post.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

                          Avoid deeply nested control flow statements.
                          Open

                                              while ( false !== $file = readdir($dh) ) {
                                                  $file = basename($file);
                                                  if ( substr($file, 0, 1) == '.' )
                                                      continue;
                                                  if ( !in_array(strtolower(substr($file, -4)), array('.png', '.gif', '.jpg') ) ) {
                          Severity: Major
                          Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 45 mins to fix

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

                            function wp_unique_post_slug($slug, $post_ID, $post_status, $post_type, $post_parent) {
                            Severity: Minor
                            Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 35 mins to fix

                              Function get_page_children has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                              function &get_page_children($page_id, $pages) {
                                  $page_list = array();
                                  foreach ( (array) $pages as $page ) {
                                      if ( $page->post_parent == $page_id ) {
                                          $page_list[] = $page;
                              Severity: Minor
                              Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 35 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_private_posts_cap_sql has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                              function get_private_posts_cap_sql($post_type) {
                                  global $user_ID;
                                  $cap = '';
                              
                                  // Private posts
                              Severity: Minor
                              Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 35 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_page_by_path has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                              function get_page_by_path($page_path, $output = OBJECT) {
                                  global $wpdb;
                                  $page_path = rawurlencode(urldecode($page_path));
                                  $page_path = str_replace('%2F', '/', $page_path);
                                  $page_path = str_replace('%20', ' ', $page_path);
                              Severity: Minor
                              Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 35 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_post_ancestors has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                              function _get_post_ancestors(&$_post) {
                                  global $wpdb;
                              
                                  if ( isset($_post->ancestors) )
                                      return;
                              Severity: Minor
                              Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 35 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

                              Avoid too many return statements within this method.
                              Open

                                  return apply_filters( 'wp_get_attachment_thumb_url', $url, $post->ID );
                              Severity: Major
                              Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

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

                                  Avoid too many return statements within this method.
                                  Open

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

                                    Avoid too many return statements within this method.
                                    Open

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

                                      Avoid too many return statements within this method.
                                      Open

                                                      return new WP_Error('db_insert_error', __('Could not insert post into the database'), $wpdb->last_error);
                                      Severity: Major
                                      Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 30 mins to fix

                                        Avoid too many return statements within this method.
                                        Open

                                                        return new WP_Error('invalid_page_template', __('The page template is invalid.'));
                                        Severity: Major
                                        Found in Web.Admin/2014/wordpress/wp-includes/post.php - About 30 mins to fix

                                          Avoid too many return statements within this method.
                                          Open

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

                                            Avoid too many return statements within this method.
                                            Open

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

                                              Avoid too many return statements within this method.
                                              Open

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

                                                Avoid too many return statements within this method.
                                                Open

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

                                                  Avoid too many return statements within this method.
                                                  Open

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

                                                    Avoid too many return statements within this method.
                                                    Open

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

                                                      Avoid too many return statements within this method.
                                                      Open

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

                                                        Avoid too many return statements within this method.
                                                        Open

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

                                                          Avoid too many return statements within this method.
                                                          Open

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

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

                                                            function wp_count_posts( $type = 'post', $perm = '' ) {
                                                                global $wpdb;
                                                            
                                                                $user = wp_get_current_user();
                                                            
                                                            
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.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 wp_untrash_post_comments has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                            Open

                                                            function wp_untrash_post_comments($post = null) {
                                                                global $wpdb;
                                                            
                                                                $post = get_post($post);
                                                                if ( empty($post) )
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.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 wp_restore_post_revision has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                            Open

                                                            function wp_restore_post_revision( $revision_id, $fields = null ) {
                                                                if ( !$revision = wp_get_post_revision( $revision_id, ARRAY_A ) )
                                                                    return $revision;
                                                            
                                                                if ( !is_array( $fields ) )
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.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 wp_check_for_changed_slugs has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                            Open

                                                            function wp_check_for_changed_slugs($post_id) {
                                                                if ( !isset($_POST['wp-old-slug']) || !strlen($_POST['wp-old-slug']) )
                                                                    return $post_id;
                                                            
                                                                $post = &get_post($post_id);
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.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_post_status has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                            Open

                                                            function get_post_status($ID = '') {
                                                                $post = get_post($ID);
                                                            
                                                                if ( is_object($post) ) {
                                                                    if ( ('attachment' == $post->post_type) && $post->post_parent && ($post->ID != $post->post_parent) )
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.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 wp_set_post_categories has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                            Open

                                                            function wp_set_post_categories($post_ID = 0, $post_categories = array()) {
                                                                $post_ID = (int) $post_ID;
                                                                // If $post_categories isn't already an array, make it one:
                                                                if (!is_array($post_categories) || 0 == count($post_categories) || empty($post_categories))
                                                                    $post_categories = array(get_option('default_category'));
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.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_lastpostdate has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                            Open

                                                            function get_lastpostdate($timezone = 'server') {
                                                                global $cache_lastpostdate, $wpdb, $blog_id;
                                                                $add_seconds_server = date('Z');
                                                                if ( !isset($cache_lastpostdate[$blog_id][$timezone]) ) {
                                                                    switch(strtolower($timezone)) {
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.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

                                                            function _wp_post_revision_fields( $post = null, $autosave = false ) {
                                                                static $fields = false;
                                                            
                                                                if ( !$fields ) {
                                                                    // Allow these to be versioned
                                                            Severity: Major
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.php and 1 other location - About 1 day to fix
                                                            Web.Admin/2014/wordpress/wp-includes/revision.php on lines 23..70

                                                            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 336.

                                                            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

                                                            function get_post_field( $field, $post, $context = 'display' ) {
                                                                $post = (int) $post;
                                                                $post = get_post( $post );
                                                            
                                                                if ( is_wp_error($post) )
                                                            Severity: Major
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.php and 1 other location - About 1 hr to fix
                                                            Web.Admin/2014/wordpress/wp-includes/bookmark.php on lines 66..80

                                                            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 114.

                                                            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

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

                                                            function _show_post_preview() {
                                                            
                                                                if ( isset($_GET['preview_id']) && isset($_GET['preview_nonce']) ) {
                                                                    $id = (int) $_GET['preview_id'];
                                                            
                                                            
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.php and 1 other location - About 55 mins to fix
                                                            Web.Admin/2014/wordpress/wp-includes/revision.php on lines 518..528

                                                            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 98.

                                                            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

                                                                    if ( $post_name_check || in_array($slug, $feeds) ) {
                                                                        $suffix = 2;
                                                                        do {
                                                                            $alt_post_name = substr($slug, 0, 200-(strlen($suffix)+1)). "-$suffix";
                                                                            $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $alt_post_name, $post_ID, $post_parent));
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.php and 1 other location - About 40 mins to fix
                                                            Web.Admin/2014/wordpress/wp-includes/post.php on lines 1997..2005

                                                            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 94.

                                                            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

                                                                    if ( $post_name_check || in_array($slug, $wp_rewrite->feeds) ) {
                                                                        $suffix = 2;
                                                                        do {
                                                                            $alt_post_name = substr($slug, 0, 200-(strlen($suffix)+1)). "-$suffix";
                                                                            $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $alt_post_name, $post_type, $post_ID));
                                                            Severity: Minor
                                                            Found in Web.Admin/2014/wordpress/wp-includes/post.php and 1 other location - About 40 mins to fix
                                                            Web.Admin/2014/wordpress/wp-includes/post.php on lines 1983..1991

                                                            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 94.

                                                            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