liquid_feedback_frontend
view app/main/member/avatar.lua @ 0:3bfb2fcf7ab9
Version alpha1
author | bsw/jbe |
---|---|
date | Wed Nov 18 12:00:00 2009 +0100 (2009-11-18) |
parents | |
children | 5c601807d397 |
line source
1 local record = Member:by_id(param.get_id())
3 if false and (not record or not record.avatar) then
4 print('Location: ' .. encode.url{ static = 'no_image.png' } .. '\n\n')
5 exit()
6 end
8 print('Content-type: image/jpg\n')
10 if record then
11 io.stdout:write(record.avatar)
12 else
13 end
15 exit()