mirror of
https://github.com/moparisthebest/wallabag
synced 2025-01-30 23:00:20 -05:00
Add ability to tag an article on creation
This commit is contained in:
parent
1186b3b67a
commit
acd99aa010
@ -180,6 +180,13 @@ class Poche
|
||||
}
|
||||
}
|
||||
|
||||
// if there are tags, add them to the new article
|
||||
if (isset($_GET['tags'])) {
|
||||
$_POST['value'] = $_GET['tags'];
|
||||
$_POST['entry_id'] = $last_id;
|
||||
$this->action('add_tag', $url);
|
||||
}
|
||||
|
||||
$this->messages->add('s', _('the link has been added successfully'));
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user