Fixed error in the filter of module group in network map (now really).

This commit is contained in:
Arturo Gonzalez Diaz 2015-09-09 17:56:36 +02:00
parent fd75539ca0
commit bdc8995efa
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 . "?" . (microtime(true) * 10000), false, array ("alt" => __('Network map'), "usemap" => "#networkmap"));
html_print_image ($image_url, false, array ("alt" => __('Network map'), "usemap" => "#networkmap"));
echo "</div>";
require ($filename_map);
}