Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2951 → Rev 2952

/CHANGELOG
1,6 → 1,11
# $Id$
 
********** ALCASAR CHANGELOG **********
NEWS
CHANGES
BUGS
- Fix local DNS configuration when installing in dhcp mode
- Fix a display bug for web sites in exception (Thx to Olivier C).
-------------------- 3.5.3 --------------------
NEWS
- WIFI4EU automatic integration via ACC
12,11 → 17,10
- improve "alcasar-CA.sh" script : can create server certificate for every hostname (not only alcasar.localdomain)
- kernel 5.10.30 + coova-chilli 1.6 + nfdump 1.6.22
- move all alcasar systemd units in "/etc/systemd" (compliant with Linux file-hierarchy)
- ISO File is now created from an running alcasar system with updated packages.
- ISO File is now created from a running alcasar system with updated packages.
- ISO file can now boot on more devices (USB, EFI, VM, etc.) with several video configurations : Thanks to Pierre RIVAULT
BUGS
- Fix a display bug in ACC activity & stat page
- Fix local DNS configuration when installing in dhcp mode
- Add the CA chain certificates in Coova in order to allow authentication with the last versions of Chrome/Edge
- When blacklisted, display the categories even if the domain name contains a private prefix (ie mycompagny.whereby.com)
WEB
/web/acc/manager/auth_exceptions.php
103,7 → 103,14
}
if ($insert == true)
{
$line ="\nuamdomain=\"" . trim($_POST['add_uamdomain']) . "\" #" . trim($_POST['add_domain_comment']);
if (trim($_POST['add_domain_comment']))
{
$line ="\nuamdomain=\"" . trim($_POST['add_uamdomain']) . "\" #" . trim($_POST['add_domain_comment']);
}
else
{
$line ="\nuamdomain=\"" . trim($_POST['add_uamdomain']) . "\"";
}
$pointeur=fopen(DOMAIN_ALLOWED_LIST,"a");
fwrite ($pointeur, $line);
fclose ($pointeur);