aboutsummaryrefslogtreecommitdiffhomepage
path: root/view.php
diff options
context:
space:
mode:
Diffstat (limited to 'view.php')
-rw-r--r--view.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/view.php b/view.php
deleted file mode 100644
index 29a5b324..00000000
--- a/view.php
+++ /dev/null
@@ -1,35 +0,0 @@
1<?php
2/**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11include dirname(__FILE__).'/inc/config.php';
12
13$id = (isset ($_GET['id'])) ? htmlspecialchars($_GET['id']) : '';
14
15if(!empty($id)) {
16
17 $entry = get_article($id);
18
19 if ($entry != NULL) {
20 $tpl->assign('id', $entry[0]['id']);
21 $tpl->assign('url', $entry[0]['url']);
22 $tpl->assign('title', $entry[0]['title']);
23 $tpl->assign('content', $entry[0]['content']);
24 $tpl->assign('is_fav', $entry[0]['is_fav']);
25 $tpl->assign('is_read', $entry[0]['is_read']);
26 $tpl->assign('load_all_js', 0);
27 $tpl->draw('view');
28 }
29 else {
30 logm('error in view call : entry is NULL');
31 }
32}
33else {
34 logm('error in view call : id is empty');
35} \ No newline at end of file