Skip to content

Commit

Permalink
Cast as integer
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkyKZ committed Oct 6, 2018
1 parent 09f8046 commit 3dd09dd
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -86,7 +86,7 @@
<?php echo Text::_('COM_ADMIN_SESSION_AUTO_START'); ?>
</th>
<td>
<?php echo $this->php_settings['session.auto_start']; ?>
<?php echo (int) $this->php_settings['session.auto_start']; ?>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -142,7 +142,7 @@
<?php echo Text::_('COM_ADMIN_MAX_INPUT_VARS'); ?>
</th>
<td>
<?php echo $this->php_settings['max_input_vars']; ?>
<?php echo (int) $this->php_settings['max_input_vars']; ?>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 3dd09dd

Please sign in to comment.