You are here

function panels_update_5219 in Panels 5.2

Update is purely an informational message encouraging site admins to re-export any panels they have previously exported, as they will all be missing data.

File

./panels.install, line 600

Code

function panels_update_5219() {
  $ret = array();
  $ret[] = array(
    'success' => TRUE,
    'query' => t('You are strongly encouraged to re-export any panels generated with a version of Panels prior to Release Candidate 2, as several fields were (incorrectly) being ommitted from all exports, and this updater is unable to update any panels already exported with missing fields.'),
  );
  return $ret;
}