You know the drill, Updates

This commit is contained in:
2023-05-01 19:51:20 -07:00
parent af6f76fbcb
commit 006e3d3314
105 changed files with 1725 additions and 1430 deletions

View File

@ -222,7 +222,7 @@ class AdminParams
public function get_click_limit()
{
// @hook Default link click threshold (unset)
return (isset($_GET['click_limit']) && intval($_GET['click_limit'])) ?
return (isset($_GET['click_limit']) && intval($_GET['click_limit']) >= 0) ?
intval($_GET['click_limit']) : yourls_apply_filter('admin_view_click_limit', '');
}