forked from leftypol/leftypol
Fixed bug causing errors when visiting a board index in a certain way
This commit is contained in:
parent
22641bdc58
commit
a896abbd66
1 changed files with 1 additions and 1 deletions
2
mod.php
2
mod.php
|
@ -166,7 +166,7 @@
|
|||
if(!openBoard($boardName))
|
||||
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['mod'] = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue