Skip to content
Snippets Groups Projects
Commit 6f4377c5 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

* Fixed attribute name input box

* Allow no operator to be selected to keep previous one
parent 3b7971cb
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ if (isset($_POST['frmaction']) && $_POST['frmaction'] == "change") { ...@@ -54,7 +54,7 @@ if (isset($_POST['frmaction']) && $_POST['frmaction'] == "change") {
$row = $res->fetchObject(); $row = $res->fetchObject();
?> ?>
<p class="pageheader">Update User</p> <p class="pageheader">Change Attribute</p>
<form action="user-attribute-change.php" method="post"> <form action="user-attribute-change.php" method="post">
<div> <div>
...@@ -73,7 +73,7 @@ if (isset($_POST['frmaction']) && $_POST['frmaction'] == "change") { ...@@ -73,7 +73,7 @@ if (isset($_POST['frmaction']) && $_POST['frmaction'] == "change") {
<?php tooltip('user_attributes_name'); ?> <?php tooltip('user_attributes_name'); ?>
</td> </td>
<td class="oldval texttop"><?php echo $row->name; ?></td> <td class="oldval texttop"><?php echo $row->name; ?></td>
<td><textarea name="user_attributes_name" cols="40" rows="1"></textarea></td> <td><input name="user_attributes_name" /></td>
</tr> </tr>
<tr> <tr>
<td class="entrytitle texttop"> <td class="entrytitle texttop">
...@@ -82,6 +82,7 @@ if (isset($_POST['frmaction']) && $_POST['frmaction'] == "change") { ...@@ -82,6 +82,7 @@ if (isset($_POST['frmaction']) && $_POST['frmaction'] == "change") {
<td class="oldval texttop"><?php echo $row->operator; ?></td> <td class="oldval texttop"><?php echo $row->operator; ?></td>
<td> <td>
<select name="user_attributes_operator"> <select name="user_attributes_operator">
<option value="">--</option>
<option value="=">=</option> <option value="=">=</option>
<option value="==">==</option> <option value="==">==</option>
<option value=":=">:=</option> <option value=":=">:=</option>
......
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