Skip to content

Commit

Permalink
Fix string concatenation
Browse files Browse the repository at this point in the history
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
  • Loading branch information
madhuracj committed Oct 11, 2016
1 parent ba50cbb commit 088d2c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/DisplayResults.php
Expand Up @@ -1077,12 +1077,12 @@ private function _getMoveForwardButtonsForTableNavigation(

$maxRows = $_SESSION['tmpval']['max_rows'];
$onsubmit = 'onsubmit="return '
. ($_SESSION['tmpval']['pos']
. (($_SESSION['tmpval']['pos']
+ $maxRows
< $this->__get('unlim_num_rows')
&& $this->__get('num_rows') >= $maxRows)
? 'true'
: 'false' . '"';
: 'false') . '"';

// display the End button
$buttons_html .= $this->_getTableNavigationButton(
Expand Down

0 comments on commit 088d2c3

Please sign in to comment.