Merge pull request #4939 from astifter/better_curl_error_during_install
Better curl error during install.
This commit is contained in:
commit
66e5586d21
5 changed files with 49 additions and 11 deletions
|
@ -32,6 +32,9 @@ td.help {
|
|||
td.help blockquote {
|
||||
margin-left: 60px;
|
||||
}
|
||||
.error_header {
|
||||
margin-left: 60px;
|
||||
}
|
||||
input[type="submit"] {
|
||||
margin: 2em 0;
|
||||
}
|
||||
|
|
|
@ -16,7 +16,13 @@
|
|||
{{/if}}
|
||||
</td><td>{{if $check.required}}(required){{/if}}</td></tr>
|
||||
{{if $check.help}}
|
||||
<tr><td class="help" colspan="3"><blockquote>{{$check.help}}</blockquote></td></tr>
|
||||
<tr><td class="help" colspan="3">
|
||||
<blockquote>{{$check.help}}</blockquote>
|
||||
{{if $check.error_msg}}
|
||||
<div class="error_header"><b>{{$check.error_msg.head}}</br><a href="{{$check.error_msg.url}}">{{$check.error_msg.url}}</a></b></div>
|
||||
<blockquote>{{$check.error_msg.msg}}</blockquote>
|
||||
{{/if}}
|
||||
</td></tr>
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue