forked from wallabag/wallabag
from spaces to commas
This commit is contained in:
@ -664,7 +664,7 @@ class Poche
|
|||||||
$urlsInserted[] = $url; //add
|
$urlsInserted[] = $url; //add
|
||||||
if (isset($record['tags']) && trim($record['tags'])) {
|
if (isset($record['tags']) && trim($record['tags'])) {
|
||||||
|
|
||||||
$tags = explode(' ', $record['tags']);
|
$tags = explode(',', $record['tags']);
|
||||||
foreach($tags as $tag) {
|
foreach($tags as $tag) {
|
||||||
$entry_id = $id;
|
$entry_id = $id;
|
||||||
$tag_id = $this->store->retrieveTagByValue($tag);
|
$tag_id = $this->store->retrieveTagByValue($tag);
|
||||||
|
|||||||
Reference in New Issue
Block a user