Преглед изворни кода

Fixed events on index. Now only shows coming events.

tags/rls1
kenn408k пре 6 година
родитељ
комит
6d710e706d
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2
    1
      classes/get.class.php

+ 2
- 1
classes/get.class.php Прегледај датотеку

81
     
81
     
82
     public static function publicEventListHome($limit) {
82
     public static function publicEventListHome($limit) {
83
         $db = new DBClass();
83
         $db = new DBClass();
84
-        $sql = "SELECT * FROM `events` ORDER BY `time` ASC LIMIT $limit";
84
+        $time = new DateTime();
85
+        $sql = "SELECT * FROM `events` WHERE `time` > ".$time->getTimestamp()." ORDER BY `time` ASC LIMIT $limit";
85
         return $db->fetchAll($db->query($sql));
86
         return $db->fetchAll($db->query($sql));
86
     }
87
     }
87
     
88
     

Loading…
Откажи
Сачувај