admin
|
mod_minitab and mod_mininext on the same page - 12/09/2006 02:17
Hi,
if you try to use both, mod_lmominitab and mod_lmomininext, on the same page, you have to apply the following changes. In the directory lmo/addon/mini/ you may find in the lmo-minitab.php, as in the lmo-mininext.php, nearly to the beginning of the file (20-22), the following lines:
| Code: |
require(dirname(__FILE__).'/../../init.php');
require_once(PATH_TO_ADDONDIR."/classlib/ini.php");
|
or
| Code: |
require_once(dirname(__FILE__).'/../../init.php');
require_once(PATH_TO_ADDONDIR."/classlib/ini.php");
|
Please change 'require_once' to 'require' in both files (have a look at the following Code)
| Code: |
require(dirname(__FILE__).'/../../init.php');
require(PATH_TO_ADDONDIR."/classlib/ini.php");
|
Best regards,
Jörn
|