gestione utenze e fix vari
This commit is contained in:
@@ -61,6 +61,7 @@ if ($id) {
|
||||
id,
|
||||
nome,
|
||||
attivo,
|
||||
dflt,
|
||||
DATE_FORMAT(data, '%d.%m.%Y %H:%i:%s') AS data
|
||||
FROM
|
||||
proxy_acl_list
|
||||
@@ -80,6 +81,8 @@ if ($id) {
|
||||
proxy_acl
|
||||
WHERE
|
||||
idacllist = $id
|
||||
ORDER BY
|
||||
rif
|
||||
";
|
||||
$res = mysql_query( $query, $DB_ID );
|
||||
}
|
||||
@@ -114,13 +117,13 @@ if ($dato['attivo']) {
|
||||
<tr>
|
||||
<td rowspan=2 class="descrizione_c">Default</td>
|
||||
<td class="descrizione_c">Nega</td>
|
||||
<td class="descrizione_c">Ignora</td>
|
||||
<td class="descrizione_c">Default</td>
|
||||
<td class="descrizione_c">Autorizza</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="radio"><input type="radio" name="dflt" value=-1 <?php if ($dflt == -1) { print "checked=\"checked\""; } ?> ></td>
|
||||
<td class="radio"><input type="radio" name="dflt" value=0 <?php if ($dflt == 0) { print "checked=\"checked\""; } ?> ></td>
|
||||
<td class="radio"><input type="radio" name="dflt" value=1 <?php if ($dflt == 1) { print "checked=\"checked\""; } ?> ></td>
|
||||
<td class="radio"><input type="radio" name="dflt" value=-1 <?php if ($dato['dflt'] == -1) { print "checked=\"checked\""; } ?> ></td>
|
||||
<td class="radio"><input type="radio" name="dflt" value=0 <?php if ($dato['dflt'] == 0) { print "checked=\"checked\""; } ?> ></td>
|
||||
<td class="radio"><input type="radio" name="dflt" value=1 <?php if ($dato['dflt'] == 1) { print "checked=\"checked\""; } ?> ></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user