supposing i want to show only pages in namespace "home:" also pages in "homework:" will be shown.
it will be fixed when changing the following line in helper.php
from
if ($ns && (strpos(':'.getNS($match), ':'.$ns) !== 0)) continue;
to
if ($ns && (strpos(':'.getNS($match).':', ':'.$ns.':') !== 0)) continue;
supposing i want to show only pages in namespace "home:" also pages in "homework:" will be shown.
it will be fixed when changing the following line in helper.php from if ($ns && (strpos(':'.getNS($match), ':'.$ns) !== 0)) continue; to if ($ns && (strpos(':'.getNS($match).':', ':'.$ns.':') !== 0)) continue;
is there any side-effect when changing this line