drupalprojects / kalatheme

Mirror of http://drupal.org/project/kalatheme provided by hubdrop.
http://hubdrop.org/project/kalatheme
GNU General Public License v2.0
22 stars 29 forks source link

Error: [] operator not supported for strings in kalatheme_process_page() (line 165 of /sites/all/themes/kalatheme/template.php). #311

Closed labboy0276 closed 5 years ago

labboy0276 commented 5 years ago

php 7.1 sadness. The fix is to change this:

  // Add local actions as the last item in the local tasks.
  if (!empty($variables['action_links'])) {
    $variables['tabs']['#primary'][] = array(
      '#theme' => 'menu_local_actions',
      '#menu_actions' => $variables['action_links'],
      '#attributes' => $dropdown_attributes,
    );
    $variables['action_links'] = FALSE;
  }

to:

  // Add local actions as the last item in the local tasks.
  if (!empty($variables['action_links'])) {
    if (empty($variables['tabs']['#primary'])) {
      $variables['tabs']['#primary'] = array();
    }
    $variables['tabs']['#primary'][] = array(
      '#theme' => 'menu_local_actions',
      '#menu_actions' => $variables['action_links'],
      '#attributes' => $dropdown_attributes,
    );
    $variables['action_links'] = FALSE;
  }
RobLoach commented 5 years ago

fe1