I have created with a custom module a new page which while developing was empty:

<?php
function module_menu() {
  $items['new-path'] = array(
    'page callback' => 'module_new_path',
  );
  return $items;
}

function module_new_path() {
  return '';
}

In this situation appears the following notice message:
"Undefined index: content en theme_panels_everywhere_page() (line 21)"

The patch adds a comprobation that checks if content is set.

CommentFileSizeAuthor
#1 1310774.patch477 bytesjherencia

Comments

jherencia’s picture

StatusFileSize
new477 bytes
Letharion’s picture

Status: Needs review » Fixed

Thanks, pushed. :)

Status: Fixed » Closed (fixed)

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