forked from indymedia/epicyon
Remove character
parent
ecef571e6f
commit
dafbcf08a1
|
@ -4494,7 +4494,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
length = int(self.headers['Content-length'])
|
length = int(self.headers['Content-length'])
|
||||||
questionParams=self.rfile.read(length).decode('utf-8')
|
questionParams=self.rfile.read(length).decode('utf-8')
|
||||||
questionParams= \
|
questionParams= \
|
||||||
questionParams.replace('+',' ').replace('%40','@').replace('%3A',':').replace('%23','#').replace('%2F','/').strip()
|
questionParams.replace('+',' ').replace('%40','@').replace('%3A',':').replace('%23','#').replace('%2F','/').replace('%3F','').strip()
|
||||||
# post being voted on
|
# post being voted on
|
||||||
messageId=None
|
messageId=None
|
||||||
if 'messageId=' in questionParams:
|
if 'messageId=' in questionParams:
|
||||||
|
|
Loading…
Reference in New Issue