If I remember correctly, there is a problem recursion in the token module and when there are many fields might the memory limit is exhausted.

We can see this problem in other modules exemple:
https://www.drupal.org/node/1391706#comment-7015126

The solution is change de code:

   if (module_exists('token')) {
      $form_settings['title_settings']['token_help'] = array(
        '#theme' => 'token_tree',
        '#token_types' => array('node'),
      );
    }

For

   if (module_exists('token')) {
      $form_settings['title_settings']['token_help'] = array(
        '#theme' => 'token_tree',
        '#token_types' => array('node'),
        '#dialog' => TRUE,
      );
    }
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

gerson.analista’s picture

Issue summary: View changes
gerson.analista’s picture

Issue summary: View changes
gerson.analista’s picture

FileSize
607 bytes
maximpodorov’s picture

Status: Active » Needs review

A must have!

maximpodorov’s picture

Status: Needs review » Reviewed & tested by the community

Oh, testing is not turned on. RTBC then.

ciss’s picture

Adding a git-compatible version of the patch.

ysamoylenko’s picture

Issue tags: +epam-contrib-2019.03

  • ysamoylenko committed 5d05e8a on 7.x-1.x authored by ciss
    Issue #2451253 by gerson.analista, ciss, maximpodorov, ysamoylenko:...
ysamoylenko’s picture

Status: Reviewed & tested by the community » Fixed

The patch was committed. Thank you for your work.

ram4nd’s picture

Issue tags: -epam-contrib-2019.03

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.