[Visual] Refixed help images on node

This commit is contained in:
fermin831 2018-02-28 12:16:43 +01:00
parent 6093f6a0d8
commit e37768097f
1 changed files with 8 additions and 2 deletions

View File

@ -1113,7 +1113,7 @@ function ui_print_help_icon ($help_id, $return = false, $home_url = '', $image =
"onclick" => "open_help ('" . $help_id . "','" . $home_url . "','" . $config['id_user'] . "')"
),
false,
$is_relative
$is_relative && is_metaconsole()
);
if (!$return)
echo $output;
@ -1918,7 +1918,13 @@ function ui_print_session_action_icon ($action, $return = false) {
function ui_print_help_tip ($text, $return = false, $img = 'images/tip.png', $is_relative = false) {
$output =
'<a href="javascript:" class="tip" >' .
html_print_image ($img, true, array('title' => $text), false, $is_relative) .
html_print_image (
$img,
true,
array('title' => $text),
false,
$is_relative && is_metaconsole()
) .
'</a>';
if ($return)