Skip to content

Commit

Permalink
Collector #479: Catalog tab now correctly puts "Unknown" in the type …
Browse files Browse the repository at this point in the history
…column for cataloged objects with no meta_type metadata column
  • Loading branch information
caseman committed Dec 16, 2002
1 parent 5e437b0 commit 4500e05
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions dtml/catalogView.dtml
Expand Up @@ -71,13 +71,11 @@ function toggleSelect() {
</td>
<td align="left" valign="top">
<div class="form-text">
<dtml-with sequence-item only>
<dtml-if name="meta_type">
<dtml-var name="meta_type" size="15">
<dtml-else>
<i>Unknown</i>
</dtml-if>
</dtml-with>
<dtml-if expr="has_key('meta_type') and meta_type">
<dtml-var name="meta_type" size="15">
<dtml-else>
<i>Unknown</i>
</dtml-if>
</div>
</td>
</tr>
Expand Down

0 comments on commit 4500e05

Please sign in to comment.