Skip to main content
6-Contributor
March 13, 2023
Solved

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

  • March 13, 2023
  • 1 reply
  • 1357 views

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? 

Best answer by plutsky

PTC TS article id:  https://www.ptc.com/en/support/article/CS386786

1 reply

15-Moonstone
March 24, 2023

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 ==.

plutsky15-MoonstoneAnswer
15-Moonstone
March 24, 2023