This only seems to happen in the ‘Users’ module in Studio. I get this every time I click on ‘Relationships’ in the form of a pop-up window:
Notice: Undefined index: AOR_Scheduled_Reports in/home/xx/crm.xxx.com/include/SubPanel/SubPanelDefinitions.php on line 498
Notice: Undefined index: in/home/xx/crm.xxx.com/include/SubPanel/SubPanelDefinitions.php on line 502
Warning: include_once(/home/xx/crm.xxx.com) [function.include-once]: failed to open stream: No such file or directory in/home/xx/crm.xxx.com/include/SubPanel/SubPanelDefinitions.php on line 502
Warning: include_once() [function.include]: Failed opening ‘’ for inclusion (include_path=‘/home/xx/crm.xxx.com:/home/xx/crm.xxx.com/include/HTMLPurifier/standalone:/home/xx/crm.xxx.com/include/…:.:/usr/local/lib/php:/usr/local/php5/lib/pear:modules/AOD_Index/Lib’) in /home/xx/crm.xxx.com/include/SubPanel/SubPanelDefinitions.php on line502
Fatal error: Class name must be a valid object or a string in/home/xx/crm.xxx.com/include/SubPanel/SubPanelDefinitions.php on line 503
And I cannot renter that area of Studio. I can enter and edit relationships for all other modules it seems without issue, and I can access Fields and Labels for Users as well. It is just Relationships under Users
Thoughts??
This is the code in question
488 //load subpanel module's table name and column fields.
489 function load_module_info ()
490 {
491 global $beanList ;
492 global $beanFiles ;
493
494 $module_name = $this->get_module_name () ;
495 if (! empty ( $module_name ))
496 {
497
498 $bean_name = $beanList [ $this->get_module_name () ] ;
499
500 $this->bean_name = $bean_name ;
501
502 include_once ($beanFiles [ $bean_name ]) ;
503 $this->template_instance = new $bean_name ( ) ;
504 $this->template_instance->force_load_details = true ;
505 $this->table_name = $this->template_instance->table_name ;