Index: trunk/extensions/SemanticMediaWiki/includes/export/SMW_Exporter.php |
— | — | @@ -213,11 +213,11 @@ |
214 | 214 | |
215 | 215 | /** |
216 | 216 | * Determine what kind of OWL property some SMW property should be exported as. |
217 | | - * The input is a SMWTypeValue object, a typeid string, or empty (use default) |
| 217 | + * The input is an SMWTypesValue object, a typeid string, or empty (use default) |
218 | 218 | */ |
219 | 219 | static public function getOWLPropertyType($type = '') { |
220 | 220 | /// TODO: improved mechanism for selecting property types is needed. |
221 | | - if ($type instanceof SMWTypeValue) { |
| 221 | + if ($type instanceof SMWTypesValue) { |
222 | 222 | $type = ($type->isUnary())?$type->getXSDValue():'__nry'; |
223 | 223 | } elseif ($type == false) { |
224 | 224 | $type = ''; |