1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-10-15 19:42:08 +00:00

possibilité de mettre en fav ou en archive un article depuis la page article

This commit is contained in:
nicosomb 2013-04-12 13:13:21 +02:00
parent 67e7910439
commit c8bbe19b3f
8 changed files with 107 additions and 100 deletions

View file

@ -31,5 +31,13 @@ if(isset($_GET['id']) && $_GET['id'] != '') {
die('query error : '.$e->getMessage());
}
generate_page($entry[0]['url'], $entry[0]['title'], $entry[0]['content']);
if ($entry != NULL) {
generate_page($entry[0]);
}
else {
die('error in view call');
}
}
else {
die('error in view call');
}