ソースを参照

Forget this previous commit, will you?

Brendan Abolivier 9 年 前
コミット
7b7e0c7bc8
共有2 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 0
    1
      controllers/data.php
  2. 1
    0
      controllers/document.php

+ 0
- 1
controllers/data.php ファイルの表示

@@ -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 ファイルの表示

@@ -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
 }