Index: branches/unlabeled/unlabeled-1.27.2/core/units/admin/admin_tag_processor.php =================================================================== diff -u -r7501 -r7506 --- branches/unlabeled/unlabeled-1.27.2/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 7501) +++ branches/unlabeled/unlabeled-1.27.2/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 7506) @@ -175,7 +175,9 @@ $section_data =& $sections_helper->getSectionData($section); if (isset($params['parent']) && $params['parent']) { - $section_data =& $sections_helper->getSectionData($section_data['parent']); + do { + $section_data =& $sections_helper->getSectionData($section_data['parent']); + } while (isset($section_data['use_parent_header']) && $section_data['use_parent_header']); } $info = $params['info']; @@ -652,7 +654,7 @@ { return (int)$this->Application->ConfigValue('UseToolbarLabels'); } - + /** * Checks if debug mode enabled (optionally) and specified constant is on * Index: branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/footer.tpl =================================================================== diff -u -r7474 -r7506 --- branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/footer.tpl (.../footer.tpl) (revision 7474) +++ branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/footer.tpl (.../footer.tpl) (revision 7506) @@ -9,6 +9,7 @@ o += '
'; o += el.innerHTML + '
'; el.innerHTML = o; + execJS(el) MakeHeight100(); addEvent(window, 'resize', function() {MakeHeight100()}) } Index: branches/unlabeled/unlabeled-1.1.2/core/admin_templates/js/grid_scroller.js =================================================================== diff -u -r7504 -r7506 --- branches/unlabeled/unlabeled-1.1.2/core/admin_templates/js/grid_scroller.js (.../grid_scroller.js) (revision 7504) +++ branches/unlabeled/unlabeled-1.1.2/core/admin_templates/js/grid_scroller.js (.../grid_scroller.js) (revision 7506) @@ -78,50 +78,6 @@ return [curleft,curtop]; } -function execJS(node) -{ - var bSaf = (navigator.userAgent.indexOf('Safari') != -1); - var bOpera = (navigator.userAgent.indexOf('Opera') != -1); - var bMoz = (navigator.appName == 'Netscape'); - - if (!node) return; - - /* IE wants it uppercase */ - var st = node.getElementsByTagName('SCRIPT'); - var strExec; - - for(var i=0;i