summaryrefslogtreecommitdiff
path: root/includes/sys_page.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/sys_page.php')
-rw-r--r--includes/sys_page.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/includes/sys_page.php b/includes/sys_page.php
index df57d08a..33ec18b9 100644
--- a/includes/sys_page.php
+++ b/includes/sys_page.php
@@ -170,7 +170,11 @@ function strip_request_item($name, $default_value = null)
function test_request_int($name)
{
$input = request()->input($name);
- return preg_match('/^\d*$/', $input);
+ if (is_null($input)) {
+ return false;
+ }
+
+ return preg_match('/^\d+$/', $input);
}
/**