cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

Arbortext 8.2.0.1 shows zeros in place of Topicref titles (column view only)

ptc-918103
5-Regular Member

Arbortext 8.2.0.1 shows zeros in place of Topicref titles (column view only)

I upgraded to Arbortext 8.2.0.1 and now see that my topicref titles are appearing as zeros in my bookmaps. This occurs in Column View only.  I ran the "Update Stylesheet for Editor", but no change.  Ideas? 

1 ACCEPTED SOLUTION

Accepted Solutions
plutsky
13-Aquamarine
(To:plutsky)
2 REPLIES 2
plutsky
13-Aquamarine
(To:ptc-918103)

Yes, this is a known issue that should be fixed in 8.2.1.0. 

 

The workaround is

Open <Editor_Install>\packages\dita\_ditamapoutline.acl

 

Find the line (line 136)  if(title = '' && index(dita_version(doc),"2.") == 1) {

Notice the single '=' after title.

Change the line to be if(title == '' && index(dita_version(doc),"2.") == 1) { 

So the single  = is replaced by ==.

plutsky
13-Aquamarine
(To:plutsky)

Top Tags