Hello,
I'm not sure if others are experiencing this problem, but for some reason when I create a note for a project the "parent_type" (the only drop down field on the "Edit Note" form) just contains "Simple", "Linked", and "Complex".
I noticed that these values are loaded from line 134 of modules/Notes/EditView.php:
I searched for a good hour to find where that is loaded from and it seems to be coming from include/language/en_us.lang.php, yet the values for that variable do not match.Code:$parent_types = $app_list_strings['record_type_display_notes'];
For a work around I just replace the mentioned line above (134 of modules/Notes/EditView.php) with the following:
If anyone has any insight that would be great, but If not, yet you're experiencing this issue, hopefully the above helps you.Code://$parent_types = $app_list_strings['record_type_display_notes']; $parent_types = array ( 'Accounts' => 'Account', 'Contacts' => 'Contact', 'Opportunities' => 'Opportunity', 'Cases' => 'Case', 'Leads' => 'Lead', 'Bugs' => 'Bug', 'Emails' => 'Email', 'Project' => 'Project', 'ProjectTask' => 'Project Task', 'Meetings' => 'Meeting', 'Calls' => 'Call' );
Thanks


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks