Corrige qques pb d'affichage
This commit is contained in:
parent
6e7fc67900
commit
0dbd16bbbd
|
@ -251,7 +251,7 @@ foreach ( $variables->strata_order as $strata) {
|
|||
foreach ($allvars['FQDN_CREATOR'] as $ttk => $ttv ) {
|
||||
if ( isset($ttv[$var]) && is_array( $ttv[$var])) {
|
||||
echo sprintf(_("Overwritted by %s"), $members[$ttk]['login'])." → ";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; echo $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
edit_var($ttv[$var]);
|
||||
}
|
||||
echo "<br/>";
|
||||
|
@ -267,7 +267,7 @@ foreach ( $variables->strata_order as $strata) {
|
|||
foreach ($allvars['FQDN'] as $ttk => $ttv ) {
|
||||
if ( isset($ttv[$var]) && is_array( $ttv[$var])) {
|
||||
echo sprintf(_("Overwritted by %s"), $panel_url[$ttk])." → ";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; echo $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
edit_var($ttv[$var]);
|
||||
}
|
||||
echo "<br/>";
|
||||
|
@ -283,7 +283,7 @@ foreach ( $variables->strata_order as $strata) {
|
|||
foreach ($allvars['CREATOR'] as $ttk => $ttv ) {
|
||||
if ( isset($ttv[$var]) && is_array( $ttv[$var])) {
|
||||
echo sprintf(_("Overwritted by %s"), $members[$ttk]['login'])." → ";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; echo $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
edit_var($ttv[$var]);
|
||||
}
|
||||
echo "<br/>";
|
||||
|
@ -299,7 +299,7 @@ foreach ( $variables->strata_order as $strata) {
|
|||
foreach ($allvars['MEMBER'] as $ttk => $ttv ) {
|
||||
if ( isset($ttv[$var]) && is_array( $ttv[$var])) {
|
||||
echo sprintf(_("Overwritted by %s"), $members[$ttk]['login'])." → ";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; echo $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
echo "<a href='javascript:edit_var(".$ttv[$var]['id'].");'>"; $variables->display_valueraw_html($ttv[$var]['value'], $var);echo "</a>";
|
||||
edit_var($ttv[$var]);
|
||||
}
|
||||
echo "<br/>";
|
||||
|
|
|
@ -92,7 +92,7 @@ echo _("See the vars for the account")." ";
|
|||
echo "<select name='member_id'>";eoption($ml, $member_id);echo "</select>";
|
||||
echo " "._("logged via")." ";
|
||||
echo "<select name='fqdn_id'>";eoption($dom->get_panel_url_list(), $fqdn_id );echo "</select> ";
|
||||
echo "<input type='submit' class='ina' value=\""; echo ehe(_("View")); echo "\" />";
|
||||
echo "<input type='submit' class='ina' value=\""; ehe(_("View")); echo "\" />";
|
||||
|
||||
?>
|
||||
</form>
|
||||
|
|
Loading…
Reference in New Issue