Admin Menu Builder Edit Item

Admin > Menu Builder > Edit Item

 

After hitting save, the icon data doesn't get saved.

 

*Note: This was editing a 3rd party module. I did not try again with a standard option. It was easy enough to add back via the db, but...still appears to be a bug.

Quote · 1 Jun 2012

Check the menu item in the database sys_menu_top

If the menu items name or caption is empty the item will not save. I do not remember which of those two cause it. Maybe either. I will run some tests to determine which exactly. But i am betting one of those two fields is empty.

https://www.deanbassett.com
Quote · 1 Jun 2012

I have actually confirmed this as a bug in Dolphin 7.0.9. I have not checked previous versions.

To fix do the folowing.

Edit administration\menu_compose_admin.php

At about line 275 in the function showEditFormCustom look for this code.

            'Icon' => array(
                'type' => 'text',
                'name' => 'Icon',
                'caption' => _t('_adm_ambuilder_Icon'),
                'value' => htmlspecialchars_adv( $aItem['icon'] ),
                'attrs' => array()
            ),

Change it to this.

            'Icon' => array(
                'type' => 'text',
                'name' => 'icon',
                'caption' => _t('_adm_ambuilder_Icon'),
                'value' => htmlspecialchars_adv( $aItem['icon'] ),
                'attrs' => array()
            ),

The uppercase word Icon must be changed to lowercase icon

https://www.deanbassett.com
Quote · 1 Jul 2012

I added a ticket for this. http://www.boonex.com/trac/dolphin/ticket/2816

https://www.deanbassett.com
Quote · 1 Jul 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.