Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Bug introduced with patch 4.5.0b

  1. #1
    juanwang is offline Sugar Community Member
    Join Date
    Jun 2006
    Posts
    20

    Default Bug introduced with patch 4.5.0b

    Hi,

    I couldn't find the section where bugs are logged so I'm putting it here. If someone can show me where to log these in the future, that would be much appreciated.

    I installed the 4.5.0b patch and discovered that it breaks the "Rename Tab" function. I have replicated this on several occasions. I am able to rename tabs such as ZuckerReports in 4.5.0 but if I install the patch, it reverts it back to the original name.

    Cheers,

    Juan

  2. #2
    malcolmh's Avatar
    malcolmh is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Aug 2004
    Posts
    1,712

    Default Re: Bug introduced with patch 4.5.0b

    Quote Originally Posted by juanwang
    Hi,

    I couldn't find the section where bugs are logged so I'm putting it here. If someone can show me where to log these in the future, that would be much appreciated.

    I installed the 4.5.0b patch and discovered that it breaks the "Rename Tab" function. I have replicated this on several occasions. I am able to rename tabs such as ZuckerReports in 4.5.0 but if I install the patch, it reverts it back to the original name.

    Cheers,

    Juan
    I have just tried this on a windows and linux server, I have no problem in changing the values. Are you saving the values correctly via the "Save" button?
    Cheers Malcolm

    Genius4U Limited - Ingenious simple IT solutions for you / Genial einfache IT Lösungen für Sie
    http://www.genius4u.com or http://www.genius4u.de

  3. #3
    juanwang is offline Sugar Community Member
    Join Date
    Jun 2006
    Posts
    20

    Default Re: Bug introduced with patch 4.5.0b

    Hi Malcolm,
    Yes I'm using the save button. I'm using XP, PHP 5 and Apache.
    I've replicated it on a fresh install of 4.5.0b and also during the updgrade from 4.5.0 to 4.5.0b and the problem occured on each occasion.

    It doesn't commit the name name change. I've also tested renaming other tabs which didn't work either.

    Cheers,

    Juan

  4. #4
    HenrikE is offline Sugar Community Member
    Join Date
    Sep 2006
    Posts
    94

    Default Re: Bug introduced with patch 4.5.0b

    Same problem, can I change the names in the database?

  5. #5
    HenrikE is offline Sugar Community Member
    Join Date
    Sep 2006
    Posts
    94

    Default Re: Bug introduced with patch 4.5.0b

    *bumpidump* someone should know where this is stored, in the database or in some file?

  6. #6
    ErikLindquist is offline Sugar Community Member
    Join Date
    Aug 2006
    Posts
    44

    Default Re: Bug introduced with patch 4.5.0b

    I am running 4.5.0b on a bitrocks stack on Mac and I have the same problem.
    I have not been able to find what table Sugar uses to keep track of Tab Names. It seems to be barried, unless it is stored in a flat file.

    Erik

  7. #7
    ErikLindquist is offline Sugar Community Member
    Join Date
    Aug 2006
    Posts
    44

    Default Re: Bug introduced with patch 4.5.0b

    I have found the following file:
    custom/include/language/en_us.lang.php

    Which seems to hold all the tab names and anything else that has been customized. The only problem I can see is the array "
    $app_list_strings['moduleList'] = array (" is called twice. But the ZuckerReports title has been changed to "Reports" but doesnot change in the Sugar application, whether you remove the second instance or not.

    PHP Code:
    <?php
    $app_list_strings
    ['lead_source_dom'] = array ( '' => '',
      
    '' => '',
      
    'Cold Call' => 'Cold Call',
      
    'Existing Customer' => 'Existing Customer',
      
    'Self Generated' => 'Self Generated',
      
    'Employee' => 'Employee',
      
    'Partner' => 'Partner',
      
    'Public Relations' => 'Public Relations',
      
    'Direct Mail' => 'Direct Mail',
      
    'Conference' => 'Conference',
      
    'Trade Show' => 'Trade Show',
      
    'Web Site' => 'Web Site',
      
    'Word of mouth' => 'Word of mouth',
      
    'Email' => 'Email',
      
    'Other' => 'Other',
      
    'Friend' => 'Friend',
    );

    $app_list_strings['moduleList'] = array (
      
    'Home' => 'Home',
      
    'Dashboard' => 'Dashboard',
      
    'Contacts' => 'Contacts',
      
    'Accounts' => 'Accounts',
      
    'Opportunities' => 'Opportunities',
      
    'Cases' => 'Cases',
      
    'Notes' => 'Notes',
      
    'Calls' => 'Calls',
      
    'Emails' => 'Emails',
      
    'Meetings' => 'Meetings',
      
    'Tasks' => 'Tasks',
      
    'Calendar' => 'Calendar',
      
    'Leads' => 'Leads',
      
    'Activities' => 'Activities',
      
    'Bugs' => 'Bug Tracker',
      
    'Feeds' => 'RSS',
      
    'iFrames' => 'My Portal',
      
    'TimePeriods' => 'Time Periods',
      
    'Project' => 'Projects',
      
    'ProjectTask' => 'Project Tasks',
      
    'Campaigns' => 'Campaigns',
      
    'Documents' => 'Documents',
      
    'Sync' => 'Sync',
      
    'Users' => 'Users',
      
    'Releases' => 'Releases',
      
    'Prospects' => 'Targets',
      
    'Queues' => 'Queues',
      
    'EmailMarketing' => 'Email Marketing',
      
    'EmailTemplates' => 'Email Templates',
      
    'ProspectLists' => 'Target Lists',
      
    'SavedSearch' => 'Saved Searches',
      
    'Objectives' => 'Objectives',
      
    'Indicator' => 'Indicator',
      
    'Conditions' => 'Conditions',
      
    'ZuckerReports' => 'Reports',
    );
    $app_list_strings['moduleList'] = array (
      
    'Home' => 'Home',
      
    'Dashboard' => 'Dashboard',
      
    'Contacts' => 'Contacts',
      
    'Accounts' => 'Accounts',
      
    'Opportunities' => 'Opportunities',
      
    'Cases' => 'Cases',
      
    'Notes' => 'Notes',
      
    'Calls' => 'Calls',
      
    'Emails' => 'Emails',
      
    'Meetings' => 'Meetings',
      
    'Tasks' => 'Tasks',
      
    'Calendar' => 'Calendar',
      
    'Leads' => 'Leads',
      
    'Activities' => 'Activities',
      
    'Bugs' => 'Bug Tracker',
      
    'Feeds' => 'RSS',
      
    'iFrames' => 'My Portal',
      
    'TimePeriods' => 'Time Periods',
      
    'Project' => 'Projects',
      
    'ProjectTask' => 'Project Tasks',
      
    'Campaigns' => 'Campaigns',
      
    'Documents' => 'Documents',
      
    'Sync' => 'Sync',
      
    'Users' => 'Users',
      
    'Releases' => 'Releases',
      
    'Prospects' => 'Targets',
      
    'Queues' => 'Queues',
      
    'EmailMarketing' => 'Email Marketing',
      
    'EmailTemplates' => 'Email Templates',
      
    'ProspectLists' => 'Target Lists',
      
    'SavedSearch' => 'Saved Searches',
      
    'Objectives' => 'Objectives',
      
    'Indicator' => 'Indicator',
      
    'Conditions' => 'Conditions',
      
    'ZuckerReports' => 'Reports',
    );
    ?>
    Erik

  8. #8
    Deuce is offline Sugar Community Member
    Join Date
    Aug 2006
    Location
    California
    Posts
    66

    Default Re: Bug introduced with patch 4.5.0b

    Odd, and similar problem here. Running 4.5.0 for Microsoft with b patch installed. Clicking Rename Tabs takes me to Edit Dropdowns instead everytime.

  9. #9
    ErikLindquist is offline Sugar Community Member
    Join Date
    Aug 2006
    Posts
    44

    Default Re: Bug introduced with patch 4.5.0b

    I get that error as well....

    Erik

  10. #10
    ErikLindquist is offline Sugar Community Member
    Join Date
    Aug 2006
    Posts
    44

    Default Re: Bug introduced with patch 4.5.0b

    I seem to have found a workaround to the problem.

    I did a search for all files containing the tab name that I wanted to change, in my case "ZucerReports", I then did a sub search to find where it was assigned.

    New modules tab names and custom tab names seemed to be stored in the following file:

    custom/application/Ext/Language/en_us.lang.ext.php

    In this file you will find the line
    $app_list_strings['moduleList']['YOURNEWMODULE']='NAME OF TAB';

    If you change the "NAME OF TAB" to what you want, it will be changed in Sugar 4.5

    In my case, I changed:
    $app_list_strings['moduleList']['ZuckerReports']='ZuckerReports';
    to
    $app_list_strings['moduleList']['ZuckerReports']='Reports';

    It's not pretty, but it works....

    Erik

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •