mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-29 04:21:06 +00:00
from spaces to commas
This commit is contained in:
parent
fa921eac00
commit
9a490ad63a
1 changed files with 1 additions and 1 deletions
|
@ -664,7 +664,7 @@ class Poche
|
|||
$urlsInserted[] = $url; //add
|
||||
if (isset($record['tags']) && trim($record['tags'])) {
|
||||
|
||||
$tags = explode(' ', $record['tags']);
|
||||
$tags = explode(',', $record['tags']);
|
||||
foreach($tags as $tag) {
|
||||
$entry_id = $id;
|
||||
$tag_id = $this->store->retrieveTagByValue($tag);
|
||||
|
|
Loading…
Reference in a new issue