From 3cfaa55d40c3ca3d9f28ac4e947ab8352a6d7141 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 30 Apr 2013 07:54:44 -0400 Subject: [PATCH] Fix typo in function name --- libraries/DisplayResults.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index aec2debc29..d04dcfd5d2 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -4569,7 +4569,7 @@ class PMA_DisplayResults && empty($analyzed_sql[0]['limit_clause']) ) { - $table_html .= $this->_getPlacedTableNavigatoins( + $table_html .= $this->_getPlacedTableNavigations( $pos_next, $pos_prev, self::PLACE_TOP_DIRECTION_DROPDOWN, "\n", $is_innodb ); @@ -4646,7 +4646,7 @@ class PMA_DisplayResults if (($is_display['nav_bar'] == '1') && empty($analyzed_sql[0]['limit_clause']) ) { - $table_html .= $this->_getPlacedTableNavigatoins( + $table_html .= $this->_getPlacedTableNavigations( $pos_next, $pos_prev, self::PLACE_BOTTOM_DIRECTION_DROPDOWN, '
' . "\n", $is_innodb ); @@ -5134,7 +5134,7 @@ class PMA_DisplayResults * * @see _getTable() */ - private function _getPlacedTableNavigatoins( + private function _getPlacedTableNavigations( $pos_next, $pos_prev, $place, $empty_line, $is_innodb ) { @@ -5154,7 +5154,7 @@ class PMA_DisplayResults return $navigation_html; - } // end of the '_getPlacedTableNavigatoins()' function + } // end of the '_getPlacedTableNavigations()' function /**