fix: [UI] Code style

pull/8269/head
Jakub Onderka 2022-04-10 12:01:23 +02:00
parent cba390ccca
commit fc6e6d6589
2 changed files with 5 additions and 5 deletions

View File

@ -30,11 +30,11 @@
}
$temp[] = $fieldName . $infoHtml;
}
$value = implode('<br />', $temp);
$value = implode('<br>', $temp);
} else {
$value = h($value);
}
echo sprintf('<span class=blue>%s</span>:<br /><div style="padding-left:10px;">%s</div>', ucfirst(h($key)), $value);
echo sprintf('<span class=blue>%s</span>:<br><div style="padding-left:10px;">%s</div>', ucfirst(h($key)), $value);
}
}
?>

View File

@ -63,7 +63,7 @@
'class' => 'input-xxlarge'
));
?>
<div class="input clear" style="width:100%;" />
<div class="input clear" style="width:100%;"></div>
<?php
if (!empty(Configure::read('Security.rest_client_enable_arbitrary_urls'))) {
echo $this->Form->input('use_full_path', array(
@ -77,7 +77,7 @@
'onChange' => 'toggleRestClientBookmark();'
));
?>
<div class="input clear" style="width:100%;" />
<div class="input clear" style="width:100%;"></div>
<div id="bookmark-name" style="display:none;">
<?php
echo $this->Form->input('name', array(
@ -86,7 +86,7 @@
));
?>
</div>
<div class="input clear" style="width:100%;" />
<div class="input clear" style="width:100%;"></div>
<?php
echo $this->Form->input('show_result', array(
'label' => __('Show result'),