Index: trunk/extensions/SemanticMaps/includes/queryprinters/SM_MapPrinter.php |
— | — | @@ -358,7 +358,9 @@ |
359 | 359 | } |
360 | 360 | } |
361 | 361 | else { |
362 | | - $text .= $pr->getHTMLText( $skin ) . ': ' . $object->getLongText( $outputmode, $skin ) . '<br />'; |
| 362 | + $propertyName = $pr->getHTMLText( $skin ); |
| 363 | + if ( $propertyName != '' ) $propertyName .= ': '; |
| 364 | + $text .= $propertyName . $object->getLongText( $outputmode, $skin ) . '<br />'; |
363 | 365 | } |
364 | 366 | } |
365 | 367 | |