Problem:
Permalink setting appears twice when editing a node with entity_translation. See attached screenshot.
permalink

Conditions:
* Drupal 7.41
* Panopoly Admin 7.x-1.30
* Entity Translation 7.x-1.0-beta4

Steps to reproduce:
* drush en panopoly_admin
* drush en entity_translation
* edit basic page content type (admin/structure/types/manage/page), go to publishing options (vertical tabs at bottom), Multilingual support, and select Enabled, with field translation, save
* create a basic page and save
* edit the same page

Proposed solution:
Remove the #group attribute from the path item in form array.
panopoly_admin.module, after line 160, add the following

unset($form['path']['#group']);

I don't understand why entity_translation triggers this

CommentFileSizeAuthor
#8 2654412-8.patch582 bytesShashwat Purav
permalink.jpg49.76 KBbwaindwain
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

bwaindwain created an issue. See original summary.

bwaindwain’s picture

Issue summary: View changes
bwaindwain’s picture

Issue summary: View changes
bwaindwain’s picture

Project: Panopoly Admin » Panopoly
chishah92’s picture

Assigned: Unassigned » chishah92
chishah92’s picture

Assigned: chishah92 » Unassigned
Shashwat Purav’s picture

Assigned: Unassigned » Shashwat Purav
Shashwat Purav’s picture

Assigned: Shashwat Purav » Unassigned
Status: Active » Needs review
FileSize
582 bytes

Removed the #group attribute. Patch added.