diff options
author | TDavis | 2019-03-30 02:21:24 -0300 |
---|---|---|
committer | TDavis | 2019-03-30 02:21:24 -0300 |
commit | 9d70c2f51714c8b5c8d99ff224f8d46eee7ae202 (patch) | |
tree | 33f624ba8918290e502a1dacce3da39a3e8fd57a /cgi | |
parent | 7e1d9532ef1ca39a52793bcd0d940a9ebd976879 (diff) | |
download | weabot-9d70c2f51714c8b5c8d99ff224f8d46eee7ae202.tar.gz weabot-9d70c2f51714c8b5c8d99ff224f8d46eee7ae202.tar.xz weabot-9d70c2f51714c8b5c8d99ff224f8d46eee7ae202.zip |
Mover hilos fix 4 Test 8
Diffstat (limited to 'cgi')
-rw-r--r-- | cgi/manage.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cgi/manage.py b/cgi/manage.py index 7545c06..667e4f5 100644 --- a/cgi/manage.py +++ b/cgi/manage.py @@ -478,7 +478,7 @@ def manage(self, path_split): else: tym = post["timestamp"] message += "IP: "+post['ip'] - post['timestamp_formatted'] += ' ID:' + iphash(inet_ntoa(post['ip']), post, tym, board["useid"], False, '', False, False, (board["countrycode"] in ['1', '2'])) + post['timestamp_formatted'] += ' ID:' + iphash(inet_ntoa(long(post['ip'])), post, tym, board["useid"], False, '', False, False, (board["countrycode"] in ['1', '2'])) # insert new post and get its new ID new_id = post.insert() @@ -1708,7 +1708,7 @@ def manage(self, path_split): if '.' in self.formdata['ip']: ip = self.formdata['ip'] else: - ip = inet_ntoa(self.formdata['ip']) + ip = inet_ntoa(long(self.formdata['ip'])) template_filename = "ipshow.html" template_values = {"mode": 1, "ip": ip, "host": getHost(ip), "country": getCountry(ip), "tor": addressIsTor(ip), "posts": posts} logAction(staff_account['username'], "ipshow on {}".format(ip)) |