Removed some conflictive characters

This commit is contained in:
Alejandro Gallardo Escobar 2015-05-14 12:16:54 +02:00
parent d212fd5543
commit 55d1b04f74
2 changed files with 2 additions and 2 deletions

View File

@ -694,7 +694,7 @@ sub create_pandora_agent($) {
# Assign the new address to the agent
my $agent_addr_id = get_agent_addr_id ($DBH, $addr_id, $agent_id);
if ($agent_addr_id <= 0) {
db_do ($DBH, 'INSERT INTO taddress_agent (`id_a`, `id_agent`)
db_do ($DBH, 'INSERT INTO taddress_agent (id_a, id_agent)
VALUES (?, ?)', $addr_id, $agent_id);
}
}

View File

@ -187,7 +187,7 @@ sub create_pandora_agent($$) {
# Assign the new address to the agent
my $agent_addr_id = get_agent_addr_id ($DBH, $addr_id, $agent_id);
if ($agent_addr_id <= 0) {
db_do ($DBH, 'INSERT INTO taddress_agent (`id_a`, `id_agent`) VALUES (?, ?)', $addr_id, $agent_id);
db_do ($DBH, 'INSERT INTO taddress_agent (id_a, id_agent) VALUES (?, ?)', $addr_id, $agent_id);
}
return $agent;