#13035 refactored password_hash

This commit is contained in:
Daniel Cebrian 2024-04-11 17:47:37 +02:00
parent cedead50ac
commit 4391c6370d
2 changed files with 2 additions and 2 deletions

View File

@ -1664,7 +1664,7 @@ function visual_map_print_item(
echo '<div id="'.$id.'" class="'.$class.'" '.'style="z-index: '.$z_index.';'.'position: absolute; '.'top: '.$top.'px; '.'left: '.$left.'px;'.'display: inline-block; '.$sizeStyle.'">';
if ($link) {
echo "<a href=\"$url\">";
echo '<a href="#" onClick="redirectNode(\''.$url.'\')">';
}
// for clean link text from bbdd only edit_visualmap

View File

@ -338,7 +338,7 @@ class Services
$name .= '<strong class="no-data">'.__('Nonexistent. This element should be deleted').'</strong>';
} else {
$url = ui_get_full_url('mobile/index.php?page=agent&id='.$item->agent()->id_agente());
$name = '<a href="'.$url.'">';
$name = '<a href="#" onClick="redirectNode(\''.$url.'\')">';
if (((bool) $item->module()->disabled()) === true) {
$disabled_element = true;