Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 1376 → Rev 1377

/web/acc/manager/lib/langues.php
109,6 → 109,12
$l_spoofing = "Adresse(s) MAC usurpée(s) (Watchdog)";
$l_virus = "Virus bloqué(s) (HAVP)";
$l_fail2ban = "Adresse(s) IP bloquée(s) (Fail2Ban)";
$l_filtering = "Filtrage";
$l_filtering_none = "Aucun";
$l_filtering_havp = "Antivirus";
$l_filtering_havp_bl = "Antivirus + Blacklist";
$l_filtering_havp_wl = "Antivirus + Whitelist";
$l_user_exists = "existe déjà !";
break;
default :
//English
211,6 → 217,12
$l_spoofing = "MAC address spoofed (Watchdog)";
$l_virus = "Virus blocked (HAVP)";
$l_fail2ban = "IP address blocked (Fail2Ban)";
$l_filtering = "Filtering";
$l_filtering_none = "None";
$l_filtering_havp = "Antivirus";
$l_filtering_havp_bl = "Antivirus + Blacklist";
$l_filtering_havp_wl = "Antivirus + Whitelist";
$l_user_exists = "already exists !";
break;
}
?>
/web/acc/manager/lib/sql/create_group.php
48,6 → 48,8
foreach($show_attrs as $key => $attr){
if ($attrmap["$key"] == 'none')
continue;
if ($key == "Filter-Id" && $$attrmap["$key"] == "None")
continue;
if ($attrmap["$key"] == ''){
$attrmap["$key"] = $key;
$attr_type["$key"] = 'replyItem';
/web/acc/manager/lib/sql/create_user.php
79,6 → 79,8
foreach($show_attrs as $key => $attr){
if ($attrmap["$key"] == 'none')
continue;
if ($key == "Filter-Id" && $$attrmap["$key"] == "None")
continue;
if ($attrmap["$key"] == ''){
$attrmap["$key"] = $key;
$attr_type["$key"] = 'replyItem';