diff options
author | Steven Barth <steven@midlink.org> | 2009-07-31 17:08:59 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-07-31 17:08:59 +0000 |
commit | 8b65a44fe8977908d2b7206feb601b696f276c44 (patch) | |
tree | e26ca89f4ad2549feed3d2a64c0a82bda6d7f10b /libs/web | |
parent | f648ab3445df562bc3d4c607d86f19f5bc65794e (diff) |
Typo
Diffstat (limited to 'libs/web')
-rw-r--r-- | libs/web/luasrc/sauth.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/sauth.lua b/libs/web/luasrc/sauth.lua index c06acdd24..41681ab16 100644 --- a/libs/web/luasrc/sauth.lua +++ b/libs/web/luasrc/sauth.lua @@ -57,7 +57,7 @@ end -- @param id Session identifier -- @return Session data function read(id) - if not id or #id == 0then + if not id or #id == 0 then return end if not id:match("^%w+$") then |