Quote:
Originally Posted by maineGuy72
i am running forum classic and dont have cms. i noticed that in the block generator it references cms files. also i can not enter a title and get errors when trying to generate a block
|
If you check the code, you'll see that these files are loading only after checking that they exist:
Code:
if(@fopen(DIR . '/includes/adminfunctions_cms.php', 'r')==TRUE)
{
require_once(DIR . '/includes/adminfunctions_cms.php');
require_once(DIR . '/includes/functions_cms_layout.php');
$cms_exists = 1;
}
It's strange the problem that you're reporting. I'll wait similar reports from others as for 6 installations that I'm following, works fine.
Chris