
04-03-2010, 04:27 PM
|
|
|
Join Date: Mar 2008
Posts: 425
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
ok, so I would change
Quote:
Use the CMS as the default script:
*/
require('content.php');
/**
* Use the forum as the default script:
*/
// require('forum.php');
|
to
Quote:
Use the CMS as the default script:
*/
//require('content.php');
/**
* Use the forum as the default script:
*/
require('forum.php');
|
like this?
|