Skip to content
Snippets Groups Projects
Commit 64578276 authored by Robert Anderson's avatar Robert Anderson
Browse files

Fixed indentation / spelling

parent 562c09d8
No related branches found
No related tags found
No related merge requests found
...@@ -24,11 +24,9 @@ include_once("includes/footer.php"); ...@@ -24,11 +24,9 @@ include_once("includes/footer.php");
include_once("includes/db.php"); include_once("includes/db.php");
$db = connect_db(); $db = connect_db();
printHeader(array( printHeader(array(
"Tabs" => array( "Tabs" => array(
"Back to user list" => "policy-main.php" "Back to user list" => "policy-main.php"
...@@ -39,7 +37,6 @@ printHeader(array( ...@@ -39,7 +37,6 @@ printHeader(array(
<p class="pageheader">Attribute List</p> <p class="pageheader">Attribute List</p>
<form id="main_form" action="user-main.php" method="post"> <form id="main_form" action="user-main.php" method="post">
<div class="textcenter"> <div class="textcenter">
Action Action
<select id="main_form_action" name="frmaction" <select id="main_form_action" name="frmaction"
...@@ -57,7 +54,6 @@ printHeader(array( ...@@ -57,7 +54,6 @@ printHeader(array(
myform.submit(); myform.submit();
"> ">
<option selected="selected">select action</option> <option selected="selected">select action</option>
<option disabled="disabled"> - - - - - - - - - - - </option> <option disabled="disabled"> - - - - - - - - - - - </option>
<option value="add">Add</option> <option value="add">Add</option>
...@@ -78,25 +74,26 @@ printHeader(array( ...@@ -78,25 +74,26 @@ printHeader(array(
<td class="textcenter">Disabled</td> <td class="textcenter">Disabled</td>
</tr> </tr>
<?php <?php
$_SESSION['attr_user_id'] = $_POST['user_id']; $_SESSION['attr_user_id'] = $_POST['user_id'];
if (isset($_SESSION['attr_user_id'])) { if (isset($_SESSION['attr_user_id'])) {
$temp = $_SESSION['attr_user_id']; $temp = $_SESSION['attr_user_id'];
$sql = "SELECT ID, Name, Operator, Value, Disabled FROM ${DB_TABLE_PREFIX}user_attributes WHERE UserID = $temp ORDER BY ID"; $sql = "SELECT ID, Name, Operator, Value, Disabled FROM ${DB_TABLE_PREFIX}user_attributes WHERE UserID = $temp ORDER BY ID";
$res = $db->query($sql); $res = $db->query($sql);
while ($row = $res->fetchObject()) { while ($row = $res->fetchObject()) {
?> ?>
<tr class="resultsitem"> <tr class="resultsitem">
<td><input type="radio" name="attr_id" value="<?php echo $row->id ?>"/><?php echo $row->id ?></td> <td><input type="radio" name="attr_id" value="<?php echo $row->id ?>"/><?php echo $row->id ?></td>
<td><?php echo $row->name ?></td> <td><?php echo $row->name ?></td>
<td><?php echo $row->operator ?></td> <td><?php echo $row->operator ?></td>
<td><?php echo $row->value ?></td> <td><?php echo $row->value ?></td>
<td class="textcenter"><?php echo $row->disabled ? 'yes' : 'no' ?></td> <td class="textcenter"><?php echo $row->disabled ? 'yes' : 'no' ?></td>
</tr> </tr>
<?php <?php
} }
?> ?>
}
</table> </table>
</form> </form>
<?php <?php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment