Fixed error in the filter of module groups in network map. Ticket#2679

This commit is contained in:
Arturo Gonzalez Diaz 2015-09-09 17:43:31 +02:00
parent 7f3d1e54f5
commit fd75539ca0
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ if ($result !== false) {
$image_url = str_replace('\\',"/",str_replace($config['homedir'], "", $filename_img));
else
$image_url = str_replace(realpath(io_safe_output($config['homedir'])), "", realpath($filename_img));
html_print_image ($image_url, false, array ("alt" => __('Network map'), "usemap" => "#networkmap"));
html_print_image ($image_url . "?" . (microtime(true) * 10000), false, array ("alt" => __('Network map'), "usemap" => "#networkmap"));
echo "</div>";
require ($filename_map);
}