Displaying 1 result from an estimated 1 matches for "anywho_lookup".
2006 Jun 13
1
calleridname.agi patch to only overwrite name if it is missing
...n>\"";
@@ -68,7 +70,7 @@
$AGI->verbose("Fonetastic.US lookup disabled.");
}
-if ($AnyWho > '0') {
+if (($AnyWho > '0') && ($calleridname != 'unknown')){
$AGI->verbose("Ready for AnyWho lookup... \n");
if ($name = &anywho_lookup ($npa, $nxx, $station)) {
$newcallerid = "\"$name <$npa$nxx$station>\"";
@@ -82,7 +84,7 @@
$AGI->verbose("AnyWho lookup disabled.");
}
-if ($Google > '0') {
+if (($Google > '0') && ($calleridname != 'unknown')){
$AGI-...