from spaces to commas

This commit is contained in:
Thomas Citharel 2015-01-20 00:02:21 +01:00
parent fa921eac00
commit 9a490ad63a

View file

@ -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);