Przeglądaj źródła

Forget this previous commit, will you?

Brendan Abolivier 9 lat temu
rodzic
commit
7b7e0c7bc8
2 zmienionych plików z 1 dodań i 1 usunięć
  1. 0
    1
      controllers/data.php
  2. 1
    0
      controllers/document.php

+ 0
- 1
controllers/data.php Wyświetl plik

@@ -6,7 +6,6 @@ function data()
6 6
 {
7 7
     set("title", "Titre");
8 8
     set("data", Data::getAll());
9
-    set("promos", Promo::getAll());
10 9
     
11 10
     return html("list.html.php", "layout.html.php");
12 11
 }

+ 1
- 0
controllers/document.php Wyświetl plik

@@ -7,6 +7,7 @@ function document()
7 7
 {
8 8
     set("title", "Titre");
9 9
     set("data", Document::getAll());
10
+    set("promos", Promo::getAll());
10 11
 
11 12
     return html("list.html.php", "layout.html.php");
12 13
 }