forked from indymedia/epicyon
Link back to search screen
parent
f7fd2a2857
commit
0565e429c5
|
@ -540,8 +540,15 @@ def htmlHistorySearch(cssCache: {}, translate: {}, baseDir: str,
|
||||||
htmlHeaderWithExternalStyle(cssFilename)
|
htmlHeaderWithExternalStyle(cssFilename)
|
||||||
|
|
||||||
# add the page title
|
# add the page title
|
||||||
|
domainFull = domain
|
||||||
|
if port:
|
||||||
|
if port != 80 and port != 443:
|
||||||
|
domainFull = domain + ':' + str(port)
|
||||||
|
actor = httpPrefix + '://' + domainFull + '/users/' + nickname
|
||||||
historySearchForm += \
|
historySearchForm += \
|
||||||
'<center><h1>' + translate['Your Posts'] + '</h1></center>'
|
'<center><h1><a href="' + actor + '/search">' + \
|
||||||
|
translate['Your Posts'] + \
|
||||||
|
'</a></h1></center>'
|
||||||
|
|
||||||
if len(boxFilenames) == 0:
|
if len(boxFilenames) == 0:
|
||||||
historySearchForm += \
|
historySearchForm += \
|
||||||
|
|
Loading…
Reference in New Issue