forked from wallabag/wallabag
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ee647a8845 | |||
| 43e41c7d78 | |||
| b6a06fa389 |
@ -333,7 +333,7 @@ class Database {
|
|||||||
$count = count($entries);
|
$count = count($entries);
|
||||||
for ($i = 0; $i < $count; $i++) {
|
for ($i = 0; $i < $count; $i++) {
|
||||||
$tag_entries = $this->retrieveTagsByEntry($entries[$i]['id']);
|
$tag_entries = $this->retrieveTagsByEntry($entries[$i]['id']);
|
||||||
$tags = [];
|
$tags = array();
|
||||||
foreach ($tag_entries as $tag) {
|
foreach ($tag_entries as $tag) {
|
||||||
$tags[] = $tag[1];
|
$tags[] = $tag[1];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user