diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-16 12:58:03 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-16 12:58:03 +0200 |
commit | 9fee2e7266a269a8795b96b972cdc62bbcb3329b (patch) | |
tree | 0abca9c0e46821a37d559d84051062b3ce431117 /process.php | |
parent | 139769aa245fd58d032cb009303b0ea2cc4187cd (diff) | |
download | wallabag-9fee2e7266a269a8795b96b972cdc62bbcb3329b.tar.gz wallabag-9fee2e7266a269a8795b96b972cdc62bbcb3329b.tar.zst wallabag-9fee2e7266a269a8795b96b972cdc62bbcb3329b.zip |
Fixed #13 - tri par date / tri par titre
Diffstat (limited to 'process.php')
-rw-r--r-- | process.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/process.php b/process.php new file mode 100644 index 00000000..14686885 --- /dev/null +++ b/process.php | |||
@@ -0,0 +1,16 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * poche, a read it later open source system | ||
4 | * | ||
5 | * @category poche | ||
6 | * @author Nicolas LÅ“uillet <support@inthepoche.com> | ||
7 | * @copyright 2013 | ||
8 | * @license http://www.wtfpl.net/ see COPYING file | ||
9 | */ | ||
10 | |||
11 | include dirname(__FILE__).'/inc/config.php'; | ||
12 | |||
13 | $entries = display_view($view); | ||
14 | $tpl->assign('token', $_SESSION['token_poche']); | ||
15 | $tpl->assign('entries', $entries); | ||
16 | $tpl->draw('entries'); \ No newline at end of file | ||