#13035 refactored password_hash
This commit is contained in:
parent
cedead50ac
commit
4391c6370d
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue