diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-11-27 08:07:25 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-11-27 08:07:25 +0100 |
commit | cd1db7220d55bcf6ad94d020ba74c3a27a86adb2 (patch) | |
tree | 725df81fb3b86f39d9c7492d3dbd72e2176de0eb /lib/dblib.lua | |
parent | f483bda181a088fd5f9aebd11fa765d10ba3ef91 (diff) |
Fixing another syntax error in dblib.lua
Diffstat (limited to 'lib/dblib.lua')
-rw-r--r-- | lib/dblib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dblib.lua b/lib/dblib.lua index 26c23ff..10b6efd 100644 --- a/lib/dblib.lua +++ b/lib/dblib.lua @@ -298,7 +298,7 @@ END; db:SafeQuery("DROP TABLE " .. tname .. ";", "update") end end - else if not read_only + else if not read_only then -- table exists, let's check it. local i local any_common = false |