mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-06 17:41:01 +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
|
$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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue