filter drop down list
I am not able to get filter drop down list work :
----------------
ob_start();
$OL=1; require("calendar.php");
unset($OL);
include "plugins/filter.php";
$content=ob_get_contents();
----------------
However, by doing this I am able to get the filter work
--------------
ob_start();
$OL=1; require("calendar.php");
$OL=1; require("calendar/config.inc.php");
unset($OL);
eclog(basename(__FILE__) . ": including filter.php" );
include "plugins/filter.php";
$content=ob_get_contents();
----------------
I did set serverConfig and include_path correctly. Is there something else I need to take care?
thanks in advance
meir
|