2012-07-29 Junichi Satoh <junichi@rworks.jp>

* lib/PandoraFMS/DB.pm: Added missing '%'.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6825 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2012-07-29 00:24:35 +00:00
parent e35c763b07
commit e14d6f5b17
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-07-29 Junichi Satoh <junichi@rworks.jp>
* lib/PandoraFMS/DB.pm: Added missing '%'.
2012-07-27 Miguel de Dios <miguel.dedios@artica.es>
* lib/PandoraFMS/DB.pm: added function "get_agentmodule_data" to

View File

@ -224,7 +224,7 @@ sub get_agent_modules ($$$$$) {
my $str_filter = '';
foreach my $key (keys $filters) {
foreach my $key (keys %$filters) {
$str_filter .= ' AND ' . $key . " = " . $filters->{$key};
}