Compare commits

...

3 Commits

Author SHA1 Message Date
ee647a8845 Merge pull request #1274 from wallabag/dev
1.9.1-b
2015-08-04 08:35:22 +02:00
43e41c7d78 Merge pull request #1272 from wallabag/nicosomb-patch-1
remove new syntax for array
2015-08-04 07:54:02 +02:00
b6a06fa389 remove new syntax for array 2015-08-04 06:29:57 +02:00

View File

@ -333,7 +333,7 @@ class Database {
$count = count($entries);
for ($i = 0; $i < $count; $i++) {
$tag_entries = $this->retrieveTagsByEntry($entries[$i]['id']);
$tags = [];
$tags = array();
foreach ($tag_entries as $tag) {
$tags[] = $tag[1];
}