Merge "Add code to write to change_tag_def table"
[lhc/web/wiklou.git] / includes / changetags / ChangeTags.php
index 8f8426f..0c81144 100644 (file)
@@ -1358,7 +1358,7 @@ class ChangeTags {
 
                // store the tag usage statistics
                $tagUsage = self::tagUsageStatistics();
-               $hitcount = isset( $tagUsage[$tag] ) ? $tagUsage[$tag] : 0;
+               $hitcount = $tagUsage[$tag] ?? 0;
 
                // do it!
                $deleteResult = self::deleteTagEverywhere( $tag );