Changeset 80073 in spip-zone
- Timestamp:
- Jan 16, 2014, 10:40:09 AM (7 years ago)
- Location:
- _plugins_/formidable/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/formidable/trunk/action/editer_formulaire.php
r37649 r80073 49 49 ) 50 50 ); 51 $id_formulaire = sql_insertq("spip_formulaires" );51 $id_formulaire = sql_insertq("spip_formulaires", array('date_crea' => date('Y-m-d H:i:s'))); 52 52 53 53 return $id_formulaire; … … 69 69 foreach ($champs as $champ) 70 70 $c[$champ] = _request($champ,$set); 71 71 72 72 include_spip('inc/modifier'); 73 73 revision_formulaire($id_formulaire, $c); -
_plugins_/formidable/trunk/base/formidable_tables.php
r78010 r80073 46 46 'type'=>'formulaire', 47 47 'titre' => "titre, '' AS lang", 48 'date' => ' ',48 'date' => 'date_crea', 49 49 'principale' => 'oui', 50 50 … … 59 59 "public" => "enum('non', 'oui') DEFAULT 'non' NOT NULL", 60 60 "statut" => "varchar(10) NOT NULL default ''", 61 "date_crea" => "datetime NOT NULL DEFAULT '0000-00-00 00:00:00'", 61 62 "maj" => "timestamp", 62 63 "apres" => "varchar(12) NOT NULL default ''", -
_plugins_/formidable/trunk/formidable_administrations.php
r78011 r80073 40 40 // Passer le champ saisies en longtext pour permettre d'y stocker des formulaires longs 41 41 $maj['0.5.2'] = array(array('sql_alter','TABLE spip_formulaires CHANGE saisies saisies longtext NOT NULL default ""')); 42 // Ajouter un champ date de création 43 $maj['0.5.3'] = array(array('sql_alter','TABLE spip_formulaires ADD date_crea datetime NOT NULL DEFAULT "0000-00-00 00:00:00"')); 42 44 43 45 include_spip('base/upgrade'); -
_plugins_/formidable/trunk/paquet.xml
r80005 r80073 2 2 prefix="formidable" 3 3 categorie="communication" 4 version="1.8. 4"4 version="1.8.5" 5 5 etat="stable" 6 6 compatibilite="[3.0.0;3.0.*]" 7 7 logo="images/formidable-64.png" 8 schema="0.5. 2"8 schema="0.5.3" 9 9 documentation="http://www.spip-contrib.net/Formidable-le-generateur-de" 10 10 >
Note: See TracChangeset
for help on using the changeset viewer.