I have two active themes: bluemarine and friendselectric.
I've defined the template.php files each with different regions. (Code is below). When I go to assign blocks, the two templates show the same regions for the blocks, as if they're running off of the same template.php file.
I turned off caching, manually reloaded, used FireFox tools to empty caches and destroy cookies, things like that. Resaved template.php files, checked functions.
Any ideas?
----
function friendselectric_regions() {
return array(
'left' => t('left sidebar'),
'content' => t('content'),
'header' => t('header'),
'footer' => t('footer'),
'adminmenu' => t('adminmenu'),
);
}
function bluemarine2_regions() {
return array(
'floater' => t('floater'),
'top_banner' => t('top banner'),
'right' => t('right sidebar'),
'left' => t('left sidebar'),
'content' => t('content'),
'header' => t('header'),
'footer' => t('footer'),
'calendartab' => t('calendartab'),
'weathertab' => t('weathertab'),
'pollstab' => t('pollstab'),
'archivestab' => t('archivestab'),
'searchtab' => t('searchtab'),
'rsstab' => t('rsstab'),
'logintab' => t('logintab'),
'emaileditiontab' => t('emaileditiontab'),
'recentforumtab' => t('recentforumtab'),
'recentblogtab' => t('recentblogtab'),