diff --git a/htdocs/opensurvey/list.php b/htdocs/opensurvey/list.php index 73442d3cf6d..745bee3a22c 100644 --- a/htdocs/opensurvey/list.php +++ b/htdocs/opensurvey/list.php @@ -88,7 +88,7 @@ if ($action == 'delete') print '
| '. $langs->trans("Ref").' | '. $langs->trans("Title") .' | '. $langs->trans("Type") .' | '. $langs->trans("Author") .' | '. $langs->trans("ExpireDate") .' | '. $langs->trans("NbOfVoters") .' | '."\n"; -$sql = "SELECT id_sondage, mail_admin, format, origin, date_fin, titre, nom_admin"; +$sql = "SELECT id_sondage, mail_admin, format, date_fin, titre, nom_admin"; $sql.= " FROM ".MAIN_DB_PREFIX."opensurvey_sondage as p"; // Count total nb of records $nbtotalofrecords = 0; | |