Hi andrewpetrov:
I have the same problem like you, when i upgrade from 6.2 to 6.3, after analyzing the line within error_log, i see the line 125 in the view.detail.php document, if you see the composition of the "if" sentence, you must see that appears like:
Code:
if ($name != 'prospectlists' && $name!='emailmarketing' && $name != 'tracked_urls') {
/* BEGIN - SECURITY GROUPS */
&& $name != 'securitygroups'
/* END - SECURITY GROUPS */
//exclude subpanels that are not prospectlists, emailmarketing, or tracked urls
$subpanel->subpanel_definitions->exclude_tab($name);
} If you can see, there is a condition in a wrong place, the problem solve just include the condition in the correct place like:
Code:
if ($name != 'prospectlists' && $name!='emailmarketing' && $name != 'tracked_urls'/* BEGIN - SECURITY GROUPS */&& $name != 'securitygroups'/* END - SECURITY GROUPS */) {
//exclude subpanels that are not prospectlists, emailmarketing, or tracked urls
$subpanel->subpanel_definitions->exclude_tab($name);
} and that´s it, working again, i hope this post can help you, this is my first helping post, regards
Bookmarks