File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 66- reset ID counters if the database is cleared (thanks William)
77- apply IE caching "fix" to automatically serve up all pages expired
88- fix typo (sf patch 1076629)
9+ - fix hyperlinking of items (sf bug 1080251)
910
1011
11122004-10-26 0.7.9
Original file line number Diff line number Diff line change @@ -1080,9 +1080,9 @@ def _hyper_repl(self, match):
10801080 cl = self ._db .getclass (s1 .lower ())
10811081 if not cl .hasnode (s2 ):
10821082 raise KeyError , 'oops'
1083- return '<a href="%s">%s%s </a>' % (s , s1 , s2 )
1083+ return '<a href="%s%s ">%s</a>' % (s1 , s2 , s )
10841084 except KeyError :
1085- return '%s%s' % ( s1 , s2 )
1085+ return s
10861086
10871087 def hyperlinked (self ):
10881088 ''' Render a "hyperlinked" version of the text '''
You can’t perform that action at this time.
0 commit comments