Project

General

Profile

« Previous | Next » 

Revision 30cf7490

Added by Katja Luther about 8 years ago

fix Ticket #5642

View differences:

eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/name/container/MisapplicationContainer.java
61 61
		}
62 62

  
63 63
		if (getMisappliedName().getSec() == null) {
64
			setNonEditableInfo("sec. ???", false);
64
		    if (getMisappliedName().getAppendedPhrase() != null ){
65
		        setNonEditableInfo(getMisappliedName().getAppendedPhrase(), false);
66
		    }else{
67
		        setNonEditableInfo("sec. ???", false);
68
		    }
65 69
		} else {
66 70
			String title = getMisappliedName().getSec().getTitleCache();
67 71
			title = title.replace("&", "&&");
68
			setNonEditableInfo("sec. " + title, false);
72
			String sec = "sec. ";
73
			if (getMisappliedName().getAppendedPhrase() != null ){
74
			    sec = getMisappliedName().getAppendedPhrase() + " "+sec;
75
			}
76
			setNonEditableInfo(sec + title, false);
69 77
		}
70 78
	}
71 79

  

Also available in: Unified diff