Fix indentation method

This commit is contained in:
Benjamin Renard 2022-04-24 18:30:02 +02:00
parent dba4c6fa9e
commit c69dcfd38f
4 changed files with 32 additions and 32 deletions

View File

@ -3,6 +3,6 @@
require realpath(dirname(__FILE__).'/..')."/includes/core.php";
if (is_callable('handle_cli_args'))
handle_cli_args();
handle_cli_args();
else
logging('FATAL', "An error occured initializing CLI : handle_cli_args() function not found.");
logging('FATAL', "An error occured initializing CLI : handle_cli_args() function not found.");

View File

@ -4,8 +4,8 @@ USER=$( basename $0 )
REAL_BIN=$( realpath -L $0|sed 's/\.wrapper$//' )
if [ "$( id -u -n )" != "$USER" ]
then
sudo -u $USER $REAL_BIN $@
exit $?
sudo -u $USER $REAL_BIN $@
exit $?
fi
$REAL_BIN $@
exit $?

View File

@ -1,6 +1,6 @@
/var/www/eesyphp/data/logs/*.log {
daily
missingok
rotate 7
sharedscripts
daily
missingok
rotate 7
sharedscripts
}

View File

@ -2,27 +2,27 @@
* Main interface components
*/
body {
font-family: arial, sans-serif;
color: #606060;
font-family: arial, sans-serif;
color: #606060;
}
main[role="main"] {
margin-top: 1em;
margin-top: 1em;
}
a.navbar-brand img {
height: 27px;
height: 27px;
}
#footer {
border-top: 1px solid #333;
margin-top: 1em;
padding-top: 1em;
border-top: 1px solid #333;
margin-top: 1em;
padding-top: 1em;
}
#footer p {
font-size: 0.8em;
text-align: center;
font-size: 0.8em;
text-align: center;
}
/*
@ -38,29 +38,29 @@ img { max-width: 100%; }
* Messages/errors & fatal errors
*/
.fatal_error_msg {
font-size: 0.8em;
color: #777;
text-align: center;
font-style: italic;
font-size: 0.8em;
color: #777;
text-align: center;
font-style: italic;
}
.alert p {
text-align: center;
text-align: center;
}
/*
* Tables
*/
th a, th a:hover {
color: #000;
text-decoration: none;
color: #000;
text-decoration: none;
}
/*
* Forms
*/
.form-inline .form-control, .form-inline label, .form-inline input, .form-inline select, .form-inline button {
margin-left: 1em!important;
margin-left: 1em!important;
}
label.required::after {
@ -68,17 +68,17 @@ label.required::after {
}
.form-error {
color: #dc3545;
color: #dc3545;
}
.invalid-feedback {
display: block;
display: block;
}
span.form-control-plaintext {
padding-top: calc(.375rem + 1px);
padding-bottom: calc(.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5;
padding-top: calc(.375rem + 1px);
padding-bottom: calc(.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5;
}