Archived
1
0

Fix project_id

This commit is contained in:
Mercier Pierre-Olivier 2013-09-12 13:32:32 +02:00
parent 85e97d2ce4
commit fe09d75e6f

View File

@ -41,7 +41,7 @@ sub update_project
{
my $args = shift;
my $project_id = $args->{param}{project_id};
my $project_id = $args->{param}{id};
my $year = $args->{param}{year} // LDAP::get_year;
if (! $project_id) {
@ -86,7 +86,7 @@ sub process_get
log WARN, "Unknown action '$action' for $type.";
}
return $node_actions{$type}{$action}($args);
return $actions{$type}{$action}($args);
}
Process::register("intradata_get", \&process_get);