Solucionar Warning in ./libraries/DisplayResults.php#869

Este es otro de esos avisos que te puede mostrar phpmyadmin y que resultan muy molesto a la hora de trabajar con el dashboard.

Para corregir estos avisos deberemos modificar las líneas 867 hasta la 881 del fichero «DisplayResults.php»:

sudo nano -c /usr/share/phpmyadmin/libraries/DisplayResults.php

El contenido de esas líneas las deberemos sustituir por el siguiente código:

// Move to the next page or to the last one
        if ($this->__get('unlim_num_rows') === false // view with unknown number of rows
            || ($_SESSION['tmpval']['max_rows'] != self::ALL_ROWS
            && $_SESSION['tmpval']['pos'] + $_SESSION['tmpval']['max_rows'] < $this->__get('unlim_num_rows')
            && $this->__get('num_rows') >= $_SESSION['tmpval']['max_rows'])
        ) {

            $table_navigation_html
                .= $this->_getMoveForwardButtonsForTableNavigation(
                    $html_sql_query, $pos_next, $is_innodb
                );

        } // end move toward

        // show separator if pagination happen

Una vez guardado y reiniciado el equipo podremos observar que ya no aparecen estos avisos.