forked from indymedia/epicyon
If there are no skills
parent
04e89c4a3f
commit
2c2ef302a9
|
@ -1270,6 +1270,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
self.server.GETbusy=False
|
self.server.GETbusy=False
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# show skills on the profile page
|
||||||
if self.path.endswith('/skills') and '/users/' in self.path:
|
if self.path.endswith('/skills') and '/users/' in self.path:
|
||||||
namedStatus=self.path.split('/users/')[1]
|
namedStatus=self.path.split('/users/')[1]
|
||||||
if '/' in namedStatus:
|
if '/' in namedStatus:
|
||||||
|
@ -1303,6 +1304,9 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
self.wfile.write(msg)
|
self.wfile.write(msg)
|
||||||
self.server.GETbusy=False
|
self.server.GETbusy=False
|
||||||
return
|
return
|
||||||
|
self._redirect_headers(actor,cookie)
|
||||||
|
self.server.GETbusy=False
|
||||||
|
return
|
||||||
|
|
||||||
# get an individual post from the path /users/nickname/statuses/number
|
# get an individual post from the path /users/nickname/statuses/number
|
||||||
if '/statuses/' in self.path and '/users/' in self.path:
|
if '/statuses/' in self.path and '/users/' in self.path:
|
||||||
|
|
Loading…
Reference in New Issue