Fixed bug causing errors when visiting a board index in a certain way
This commit is contained in:
parent
22641bdc58
commit
a896abbd66
2
mod.php
2
mod.php
@ -166,7 +166,7 @@
|
|||||||
if(!openBoard($boardName))
|
if(!openBoard($boardName))
|
||||||
error(ERROR_NOBOARD);
|
error(ERROR_NOBOARD);
|
||||||
|
|
||||||
$page = index($matches[2] == FILE_INDEX ? 1 : $matches[2], true);
|
$page = index(empty($matches[2]) || $matches[2] == FILE_INDEX ? 1 : $matches[2], true);
|
||||||
$page['pages'] = getPages(true);
|
$page['pages'] = getPages(true);
|
||||||
$page['mod'] = true;
|
$page['mod'] = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user