PHP Notice: Undefined variable: activepage in D:\domains\mysite.com\wwwroot\modules\Statistics\Statistics.module.php on line 264
when I open Statics.module.php file and checked the line 264. I found following fuction, it is pointing to one of the line in this fuction.
Code: Select all
switch ($action)
{
case "default": {
if (isset($params["what"])) {
$what=$params["what"];
} else {
$what="";
}
if (isset($params["how"])) {
$how=$params["how"];
} else {
$how="dont";
}
$value=$this->statExecute($what);
switch ($how) {
case "gfx" : //Fallthrough so far
case "txt" : {
echo $value;
break;
}
default : break;
}
break;