1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-31 04:07:55 +01:00
2010-02-10 18:18:01 +00:00

11 lines
199 B
Python

// $Id$
// use $parm to restrict visibility based on matching part of the URL
if($parm && !strpos(e_SELF,$parm))
{
return;
}
else
{
include(e_PLUGIN."newforumposts_main/newforumposts_main.php");
}