Fix PHP warning

1.10.x
Julio Montoya 10 years ago
parent 9a4c0f5fa7
commit fff980f981
  1. 4
      main/survey/survey_list.php

@ -101,7 +101,9 @@ if ($action == 'delete' && isset($_GET['survey_id'])) {
exit;
}
// If the survey is shared => also delete the shared content
if (is_numeric($survey_data['survey_share'])) {
if (isset($survey_data['survey_share']) &&
is_numeric($survey_data['survey_share'])
) {
SurveyManager::delete_survey($survey_data['survey_share'], true);
}

Loading…
Cancel
Save