mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 14:28:56 +00:00
[ticket/11555] Fix page comparison
Strict comparison should not be used to compare string and number PHPBB3-11555
This commit is contained in:
parent
d8ed228ddf
commit
9435f16f59
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ function popup(url, width, height, name) {
|
||||||
function jumpto() {
|
function jumpto() {
|
||||||
var page = prompt(jump_page, on_page);
|
var page = prompt(jump_page, on_page);
|
||||||
|
|
||||||
if (page !== null && !isNaN(page) && page === Math.floor(page) && page > 0) {
|
if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0) {
|
||||||
if (base_url.indexOf('?') === -1) {
|
if (base_url.indexOf('?') === -1) {
|
||||||
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
|
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue