diff options
author | Kévin Gomez <contact@kevingomez.fr> | 2015-11-29 16:19:02 +0100 |
---|---|---|
committer | Kévin Gomez <contact@kevingomez.fr> | 2015-11-29 16:19:02 +0100 |
commit | 752b90d1f2e279d3662d5431b09c7587df2937ca (patch) | |
tree | ab8c32524d6571190cf357d90d3b49cf65412efb | |
parent | c13eda461f88ba16c88d7c398322a59b294e6c97 (diff) | |
download | wallabag-752b90d1f2e279d3662d5431b09c7587df2937ca.tar.gz wallabag-752b90d1f2e279d3662d5431b09c7587df2937ca.tar.zst wallabag-752b90d1f2e279d3662d5431b09c7587df2937ca.zip |
Fix tagging rules ordering
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Config.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Config.php b/src/Wallabag/CoreBundle/Entity/Config.php index 1204efa8..2ca4182e 100644 --- a/src/Wallabag/CoreBundle/Entity/Config.php +++ b/src/Wallabag/CoreBundle/Entity/Config.php | |||
@@ -79,6 +79,7 @@ class Config | |||
79 | 79 | ||
80 | /** | 80 | /** |
81 | * @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\TaggingRule", mappedBy="config", cascade={"remove"}) | 81 | * @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\TaggingRule", mappedBy="config", cascade={"remove"}) |
82 | * @ORM\OrderBy({"id" = "ASC"}) | ||
82 | */ | 83 | */ |
83 | private $taggingRules; | 84 | private $taggingRules; |
84 | 85 | ||