Index: trunk/extensions/Wikidata/OmegaWiki/OmegaWikiEditors.php |
— | — | @@ -188,14 +188,16 @@ |
189 | 189 | $wgPropertyAttributeName; |
190 | 190 | |
191 | 191 | $linkValueObjectAttributesEditors = array(); |
192 | | - $textValueObjectAttributesEditors = array(); |
| 192 | + $textValueObjectAttributesEditors = array(); |
| 193 | + $translatedTextValueObjectAttributesEditors = array(); |
| 194 | + $optionValueObjectAttributesEditors = array(); |
193 | 195 | |
194 | 196 | foreach ($viewInformation->getPropertyToColumnFilters() as $propertyToColumnFilter) { |
195 | 197 | $attribute = $propertyToColumnFilter->getAttribute(); |
196 | 198 | $propertyCaption = $propertyToColumnFilter->getPropertyCaption(); |
197 | 199 | |
198 | 200 | $textValueObjectAttributesEditors[] = new ObjectAttributeValuesEditor($attribute, $propertyCaption, $viewInformation); |
199 | | - $linkValueObjectAttributeEditors[] = new ObjectAttributeValuesEditor($attribute, $propertyCaption, $viewInformation); |
| 201 | + $linkValueObjectAttributesEditors[] = new ObjectAttributeValuesEditor($attribute, $propertyCaption, $viewInformation); |
200 | 202 | $translatedTextValueObjectAttributesEditors[] = new ObjectAttributeValuesEditor($attribute, $propertyCaption, $viewInformation); |
201 | 203 | $optionValueObjectAttributesEditors[] = new ObjectAttributeValuesEditor($attribute, $propertyCaption, $viewInformation); |
202 | 204 | } |