Closed Morpheus1966 closed 10 years ago
I'll check this.
I think I found the reason in CAT_Helper_Page, line 1611:
$page['template'] = ( $page['template'] == '' ) ? DEFAULT_TEMPLATE : $page['template'];
Change to
$page['template'] = ( $page['template'] == '' ) ? '' : $page['template'];
Will have to add a fix to the update script, too.
work´s fine
Thanks
Great, thanks for testing. I've also added the fix to the upgrade script, have to test it though.
I'm creating a new page, as the template is "default" is selected. If I then me then look at the properties of the template page the system setting is selected (eg mojito)
This has the result that when I change the default template in the system settings and so the yes for the whole website would not, is transferred to the sides. So the pages to stay with the Standard Template wherewith they have been created at the time.
What I mean is, if you create a page with the default, but should also always take the default which is predefined by the system, right?