summaryrefslogtreecommitdiff
path: root/lib/deck/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/deck/index.php')
-rw-r--r--lib/deck/index.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/deck/index.php b/lib/deck/index.php
deleted file mode 100644
index ad497d5..0000000
--- a/lib/deck/index.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-$filters = array (
- "order" => array (
- "nbUsers" => "popularity",
- "name" => "name",
- "owner" => "author",
- ),
- "way" => $ord_ways,
-);
-$fdefaults = array (
- "order" => "nbUsers",
- "way" => "DESC",
-);
-
-$decks = array();
-$n = sql(
- "SELECT decks.id AS id, decks.name AS name, account.login AS owner, COUNT(deck_study.id) AS nbUsers ".
- "FROM decks LEFT JOIN account ON decks.owner = account.id LEFT JOIN deck_study ON deck_study.deck = decks.id ".
- "GROUP BY decks.id ORDER BY " . get_filter("order") . " " . get_filter("way")
- );
-while ($nn = mysql_fetch_assoc($n)) $decks[] = $nn;
-
-require("tpl/deck/index.php");
-