Completed
Push — spip-2.1 ( 1b0d01...40676b )
by cam
14:08
created
ecrire/action/changer_mode_document.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
 }
28 28
 
29 29
 // http://doc.spip.org/@action_changer_mode_document_post
30
+/**
31
+ * @param string[] $r
32
+ */
30 33
 function action_changer_mode_document_post($r)
31 34
 {
32 35
 	// - id_document le doc a modifier
Please login to merge, or discard this patch.
ecrire/action/copier_local.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
35 35
 }
36 36
 
37 37
 // http://doc.spip.org/@action_copier_local_post
38
+/**
39
+ * @param integer $id_document
40
+ */
38 41
 function action_copier_local_post($id_document) {
39 42
 
40 43
 	// Il faut la source du document pour le copier
Please login to merge, or discard this patch.
ecrire/action/dater.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
 }
26 26
 
27 27
 // http://doc.spip.org/@action_dater_post
28
+/**
29
+ * @param string[] $r
30
+ */
28 31
 function action_dater_post($r)
29 32
 {
30 33
 	include_spip('inc/date');
Please login to merge, or discard this patch.
ecrire/action/documenter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
 }
59 59
 
60 60
 // http://doc.spip.org/@action_documenter_post
61
+/**
62
+ * @param string[] $r
63
+ */
61 64
 function action_documenter_post($r)
62 65
 {
63 66
 	// - sign indique le portfolio image ou document, dans le cas de
Please login to merge, or discard this patch.
ecrire/action/editer_auteurs.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -63,6 +63,11 @@
 block discarded – undo
63 63
 }
64 64
 
65 65
 // http://doc.spip.org/@supprimer_auteur_et_rediriger
66
+/**
67
+ * @param string $type
68
+ * @param string $id
69
+ * @param string $id_auteur
70
+ */
66 71
 function supprimer_auteur_et_rediriger($type, $id, $id_auteur, $redirect)
67 72
 {
68 73
 	$jointure = table_jointure('auteur', $type);
Please login to merge, or discard this patch.
ecrire/action/editer_breve.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -196,6 +196,10 @@
 block discarded – undo
196 196
 }
197 197
 
198 198
 // http://doc.spip.org/@revisions_breves_langue
199
+/**
200
+ * @param string $id_breve
201
+ * @param string $id_rubrique
202
+ */
199 203
 function revisions_breves_langue($id_breve, $id_rubrique, $changer_lang)
200 204
 {
201 205
 	if ($changer_lang == "herit") {
Please login to merge, or discard this patch.
ecrire/action/editer_message.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@  discard block
 block discarded – undo
46 46
 }
47 47
 
48 48
 // http://doc.spip.org/@action_editer_message_post_supprimer
49
+/**
50
+ * @param string $id_message
51
+ */
49 52
 function action_editer_message_post_supprimer($id_message) {
50 53
 	sql_delete("spip_messages", "id_message=".sql_quote($id_message));
51 54
 	sql_delete("spip_auteurs_messages", "id_message=".sql_quote($id_message));
@@ -56,12 +59,20 @@  discard block
 block discarded – undo
56 59
 }
57 60
 
58 61
 // http://doc.spip.org/@action_editer_message_post_vu
62
+/**
63
+ * @param string $id_message
64
+ * @param string $id_auteur
65
+ */
59 66
 function action_editer_message_post_vu($id_message, $id_auteur) {
60 67
 	sql_updateq("spip_auteurs_messages", array("vu" => 'oui'), "id_message=$id_message AND id_auteur=$id_auteur");
61 68
 
62 69
 }
63 70
 
64 71
 // http://doc.spip.org/@action_editer_message_post_retirer
72
+/**
73
+ * @param string $id_message
74
+ * @param string $id_auteur
75
+ */
65 76
 function action_editer_message_post_retirer($id_message, $id_auteur) {
66 77
 	sql_delete("spip_auteurs_messages", "id_message=$id_message AND id_auteur=$id_auteur");
67 78
 }
@@ -111,6 +122,10 @@  discard block
 block discarded – undo
111 122
 
112 123
 
113 124
 // http://doc.spip.org/@action_editer_message_post_envoyer
125
+/**
126
+ * @param string $id_message
127
+ * @param string $statut
128
+ */
114 129
 function action_editer_message_post_envoyer($id_message, $statut) {
115 130
 
116 131
 	sql_updateq("spip_messages", array("statut" => $statut), "id_message=$id_message");
Please login to merge, or discard this patch.
ecrire/action/editer_mots.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
 }
25 25
 
26 26
 // http://doc.spip.org/@action_editer_mots_post
27
+/**
28
+ * @param string[] $r
29
+ */
27 30
 function action_editer_mots_post($r)
28 31
 {
29 32
 	$redirect = _request('redirect');
Please login to merge, or discard this patch.
ecrire/action/editer_rubrique.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -120,6 +120,9 @@
 block discarded – undo
120 120
 // breves en question
121 121
 
122 122
 // http://doc.spip.org/@editer_rubrique_breves
123
+/**
124
+ * @param integer $id_parent
125
+ */
123 126
 function editer_rubrique_breves($id_rubrique, $id_parent, $c=false)
124 127
 {
125 128
 	if (!sql_countsel('spip_breves', "id_rubrique=$id_rubrique"))
Please login to merge, or discard this patch.