aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Config.php
diff options
context:
space:
mode:
authorKévin Gomez <contact@kevingomez.fr>2015-11-29 16:19:02 +0100
committerKévin Gomez <contact@kevingomez.fr>2015-11-29 16:19:02 +0100
commit752b90d1f2e279d3662d5431b09c7587df2937ca (patch)
treeab8c32524d6571190cf357d90d3b49cf65412efb /src/Wallabag/CoreBundle/Entity/Config.php
parentc13eda461f88ba16c88d7c398322a59b294e6c97 (diff)
downloadwallabag-752b90d1f2e279d3662d5431b09c7587df2937ca.tar.gz
wallabag-752b90d1f2e279d3662d5431b09c7587df2937ca.tar.zst
wallabag-752b90d1f2e279d3662d5431b09c7587df2937ca.zip
Fix tagging rules ordering
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Config.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Config.php1
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