Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 1844 → Rev 1845

/conf/sudoers
19,7 → 19,7
Cmnd_Alias SQL=/usr/local/bin/alcasar-mysql.sh # to export users database
Cmnd_Alias SYSTEM_BACKUP=/usr/local/bin/alcasar-conf.sh # to create conf backup file
Cmnd_Alias EXPORT=/usr/local/bin/alcasar-archive.sh # to export/save the log files
Cmnd_Alias BL=/usr/local/bin/alcasar-bl.sh,/usr/local/bin/alcasar-havp.sh,/usr/local/bin/alcasar-file-clean.sh,/usr/local/bin/alcasar-url_filter.sh # to manage the filtering system
Cmnd_Alias BL=/usr/local/bin/alcasar-bl.sh,/usr/local/bin/alcasar-havp.sh,/usr/local/bin/alcasar-file-clean.sh,/usr/local/bin/alcasar-url_filter_wl.sh,/usr/local/bin/alcasar-url_filter_bl.sh # to manage the filtering system
Cmnd_Alias NF=/usr/local/bin/alcasar-nf.sh,/usr/local/bin/alcasar-iptables.sh,/usr/sbin/ipset # to manage the firewall
Cmnd_Alias LOGOUT=/usr/local/bin/alcasar-logout.sh # to disconnect the users
Cmnd_Alias UAM=/usr/local/bin/alcasar-uamallowed.sh # to manage the trusted websites (uamallowed)
/web/acc/admin/bl_categories_help.php
177,7 → 177,7
{
exec("head -n 15 $filtre", $resultat);
}
for($i=0; $i<15; $i++)
for($i=0; $i<count($resultat); $i++)
echo $resultat[$i]."<br/>";
?>
</td></tr>
/web/acc/manager/htdocs/show_groups.php
25,7 → 25,7
echo <<<EOM
<html>
<title>find group</title>
<meta http-equiv="Content-Type" content="text/html" charset="$config[general_charset]">
<meta http-equiv="Content-Type" content="text/html" charset="$config['general_charset']">
<link rel="stylesheet" href="style.css">
</head>
<body>
/web/acc/manager/lib/sql/change_passwd.php
5,7 → 5,7
echo "<b>Could not include SQL library</b><br>\n";
exit();
}
if ($config[sql_use_operators] == 'true'){
if ($config['sql_use_operators'] == 'true'){
$text1 = ',op';
$text2 = ",':='";
$text3 = ", op = ':='";