Bladeren bron

Corrected invalid requests

Brendan Abolivier 9 jaren geleden
bovenliggende
commit
679894cfcd
3 gewijzigde bestanden met toevoegingen van 13 en 5 verwijderingen
  1. 3
    1
      models/data.class.php
  2. 4
    2
      models/file.class.php
  3. 6
    2
      models/promo.class.php

+ 3
- 1
models/data.class.php Bestand weergeven

@@ -177,13 +177,15 @@ class Data
177 177
             "where" => array(
178 178
                 array("identifiant", "=", $this->identifiant)
179 179
             )
180
-        ))[0];
180
+        ));
181 181
 
182 182
         if(!$data)
183 183
         {
184 184
             throw new UnexpectedValueException("Les données n'existent plus en base de données");
185 185
         }
186 186
 
187
+        $data = $data[0];
188
+
187 189
         $attrs = get_object_vars($this);
188 190
         $toUpdate = array();
189 191
 

+ 4
- 2
models/file.class.php Bestand weergeven

@@ -17,13 +17,15 @@ class File
17 17
             "where" => array(
18 18
                 array("id", "=", $id)
19 19
             )
20
-        ))[0];
20
+        ));
21 21
 
22 22
         if(!$document)
23 23
         {
24 24
             throw new LengthException("Le fichier n'existe pas");
25 25
         }
26 26
 
27
+        $document = $document[0];
28
+
27 29
         $this->id = $document["id"];
28 30
         $this->rang = $document["rang"];
29 31
         $this->promo = $document["promo"];
@@ -66,7 +68,7 @@ class File
66 68
             "where" => array(
67 69
                 array("promo_id", "=", $newPromo)
68 70
             )
69
-        ))[0];
71
+        ));
70 72
 
71 73
         if(!$promo)
72 74
         {

+ 6
- 2
models/promo.class.php Bestand weergeven

@@ -14,13 +14,15 @@ class Promo
14 14
             "where" => array(
15 15
                 array("id_promo", "=", $id)
16 16
             )
17
-        ))[0];
17
+        ));
18 18
 
19 19
         if($promo == NULL)
20 20
         {
21 21
             throw new LengthException("La promo n'existe pas");
22 22
         }
23 23
 
24
+        $promo = $promo[0];
25
+
24 26
         $this->id_promo = $promo["id_promo"];
25 27
         $this->libelle = $promo["libelle"];
26 28
     }
@@ -71,13 +73,15 @@ class Promo
71 73
             "where" => array(
72 74
                 array("id_promo", "=", $this->id_promo)
73 75
             )
74
-        ))[0];
76
+        ));
75 77
 
76 78
         if(!$promo)
77 79
         {
78 80
             throw new UnexpectedValueException("La promo n'existe plus en base de données");
79 81
         }
80 82
 
83
+        $promo = $promo[0];
84
+
81 85
         $attrs = get_object_vars($this);
82 86
         $toUpdate = array();
83 87