Merge branch 'redeclare-agents_get_agent_id_by_alias-dev' into 'develop'

Fixed redeclare function

See merge request artica/pandorafms!1135
This commit is contained in:
vgilc 2017-11-29 18:17:08 +01:00
commit 13369ddab4
1 changed files with 0 additions and 18 deletions

View File

@ -1317,24 +1317,6 @@ function agents_get_agent_id ($agent_name, $io_safe_input = false) {
return (int) db_get_value ('id_agente', 'tagente', 'nombre', $agent_name);
}
/**
* Get agents id from an agent alias.
*
* @param string $agent_alias Agent alias to get its id.
* @param boolean $io_safe_input If it is true transform to safe string, by default false.
*
* @return int Id from the agent of the given alias.
*/
function agents_get_agent_id_by_alias ($alias, $io_safe_input = false) {
if ($io_safe_input) {
$alias = io_safe_input($alias);
}
$sql = sprintf("SELECT tagente.id_agente FROM tagente WHERE alias LIKE '%s' ",$alias);
$agent_id = db_get_all_rows_sql($sql);
return $agent_id;
}
/**
* Get name of an agent.
*