소스 검색

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
 }