src/main/java/com/atlassian/uwc/ui/ConverterEngine_v2.java [1039:1051]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void handlePageHistoryProperty(String key, String value) {
    	Matcher switchFinder = switchPattern.matcher(key);
    	if (switchFinder.find()) {
    		//the default should be false, so it's ok to just parse the string.
    		this.handlingPageHistories = Boolean.parseBoolean(value);
    		return;
    	}
    	Matcher suffixFinder = suffixPattern.matcher(key);
    	if (suffixFinder.find()) {
    		setPageHistorySuffix(value);
    		return;
    	}
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/ui/ConverterEngine.java [2619:2631]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected void handlePageHistoryProperty(String key, String value) {
		Matcher switchFinder = switchPattern.matcher(key);
		if (switchFinder.find()) {
			//the default should be false, so it's ok to just parse the string.
			this.handlingPageHistories = Boolean.parseBoolean(value);
			return;
		}
		Matcher suffixFinder = suffixPattern.matcher(key);
		if (suffixFinder.find()) {
			setPageHistorySuffix(value);
			return;
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



