You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class TagQuery extends \craft\elements\db\TagQuery
21
+
{
22
+
23
+
protectedfunctionbeforePrepare (): bool
24
+
{
25
+
if (!TagManager::getInstance()->getSettings()->enableUsage)
26
+
returnparent::beforePrepare();
27
+
28
+
$getUsage = newExpression(
29
+
'(SELECT COUNT(*) FROM (SELECT [[r.sourceId]], [[r.sourceSiteId]] FROM {{%relations}} r WHERE [[r.targetId]] = [[elements.id]] GROUP BY [[r.sourceId]], [[r.sourceSiteId]]) as usage) as [[usage]]'
0 commit comments