Skip to content

Commit

Permalink
Proper #href for remote tables
Browse files Browse the repository at this point in the history
  • Loading branch information
johncurrier committed Aug 23, 2008
1 parent d293949 commit f7ce357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/sourceforge/schemaspy/view/DotNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ else if (indexColumns.contains(column))
buf.append("</TD></TR>" + lineSeparator);

buf.append(" </TABLE>>" + lineSeparator);
buf.append(" URL=\"" + path + toNCR(tableName) + ".html" + (path.length() == 0 && !config.showColumnDetails ? "#diagram" : "#") + "\"" + lineSeparator);
buf.append(" URL=\"" + path + toNCR(tableName) + ".html" + ((path.length() == 0 && !config.showColumnDetails) || table.isRemote() ? "#diagram" : "#") + "\"" + lineSeparator);
buf.append(" tooltip=\"" + toNCR(tableName) + "\"" + lineSeparator);
buf.append(" ];");

Expand Down

0 comments on commit f7ce357

Please sign in to comment.