[Astpp-commit] SF.net SVN: astpp:[2199] trunk/modules/ASTPP/lib/ASTPP.pm
Brought to you by:
darrenkw
|
From: <dar...@us...> - 2008-10-02 04:00:43
|
Revision: 2199
http://astpp.svn.sourceforge.net/astpp/?rev=2199&view=rev
Author: darrenkw
Date: 2008-10-02 03:59:39 +0000 (Thu, 02 Oct 2008)
Log Message:
-----------
Add support to properly return the freeswitch sip profiles.
Modified Paths:
--------------
trunk/modules/ASTPP/lib/ASTPP.pm
Modified: trunk/modules/ASTPP/lib/ASTPP.pm
===================================================================
--- trunk/modules/ASTPP/lib/ASTPP.pm 2008-09-11 05:14:20 UTC (rev 2198)
+++ trunk/modules/ASTPP/lib/ASTPP.pm 2008-10-02 03:59:39 UTC (rev 2199)
@@ -204,9 +204,9 @@
my ($sql,$sql1,$tmp,$tmp1);
$arg{xml} .= "<domain name=\"" . $arg{domain} . "\">";
$tmp = "SELECT * FROM directory WHERE username = "
- . $self->{_freeswitch_db}->quote($arg{user})
- . " AND domain = "
- . $self->{_freeswitch_db}->quote($arg{domain});
+ . $self->{_freeswitch_db}->quote($arg{user});
+# . " AND domain = "
+# . $self->{_freeswitch_db}->quote($arg{domain});
print STDERR $tmp . "\n";
$sql = $self->{_freeswitch_db}->prepare($tmp);
$sql->execute;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|