From: Anthony Minessale Date: Thu, 25 Jun 2009 13:24:00 +0000 (+0000) Subject: FSCORE-387 X-Git-Tag: v1.0.4~341 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9903d328f161d5f0178ec58fc993a76e1c6a6546;p=thirdparty%2Ffreeswitch.git FSCORE-387 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13946 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_commands/mod_commands.c b/src/mod/applications/mod_commands/mod_commands.c index a1af9b4a14..6b41831a88 100644 --- a/src/mod/applications/mod_commands/mod_commands.c +++ b/src/mod/applications/mod_commands/mod_commands.c @@ -2784,7 +2784,7 @@ SWITCH_STANDARD_API(show_function) sprintf(sql, "select name, description, syntax, key from interfaces where type = '%s' and description != '' order by type,name", command); } } else if (!strcasecmp(command, "calls")) { - sprintf(sql, "select * from calls order by created_epoch"); + sprintf(sql, "select * from calls order by call_created_epoch"); if (argv[1] && !strcasecmp(argv[1],"count")) { holder.justcount = 1; if (argv[3] && !strcasecmp(argv[2], "as")) {