acts-as-taggable-on 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.3
|
@@ -74,7 +74,7 @@ module ActsAsTaggableOn::Taggable
|
|
74
74
|
scope[:conditions],
|
75
75
|
start_at_conditions,
|
76
76
|
end_at_conditions
|
77
|
-
].compact
|
77
|
+
].compact.reverse
|
78
78
|
|
79
79
|
## Generate joins:
|
80
80
|
tagging_join = "LEFT OUTER JOIN #{Tagging.table_name} ON #{Tag.table_name}.id = #{Tagging.table_name}.tag_id"
|
@@ -87,7 +87,7 @@ module ActsAsTaggableOn::Taggable
|
|
87
87
|
tagging_join,
|
88
88
|
taggable_join,
|
89
89
|
scope[:joins]
|
90
|
-
].compact
|
90
|
+
].compact.reverse
|
91
91
|
|
92
92
|
|
93
93
|
## Generate scope:
|