Add a missing ). This fixes a problem with eavesdrop.lua reported at http://code.google.com/p/fusionpbx/issues/detail?id=426

This commit is contained in:
Mark Crane 2013-05-23 16:09:38 +00:00
parent df48067467
commit 234cd80c4b
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ extension = argv[1];
dofile(scripts_dir.."/resources/functions/file_exists.lua");
--connect to the database
if (file_exists(database_dir.."/core.db") then
if (file_exists(database_dir.."/core.db")) then
--dbh = freeswitch.Dbh("core:core"); -- when using sqlite
dbh = freeswitch.Dbh("sqlite://"..database_dir.."/core.db");
else