summaryrefslogtreecommitdiff
path: root/src/views/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/pages')
-rw-r--r--src/views/pages/users/index.html.php4
-rw-r--r--src/views/pages/users/individual.html.php9
2 files changed, 11 insertions, 2 deletions
diff --git a/src/views/pages/users/index.html.php b/src/views/pages/users/index.html.php
index c268c87..ade4dea 100644
--- a/src/views/pages/users/index.html.php
+++ b/src/views/pages/users/index.html.php
@@ -23,6 +23,8 @@ foreach ($users as $user) {
$t->openTag('tr');
foreach ($attribs as $attrib) {
+ $t->openTag('td');
+
$props = $user[$attrib['key']];
$value = $props['value'];
@@ -36,6 +38,7 @@ foreach ($users as $user) {
if ($bool) $arr['disabled'] = $disabled;
}
if ($bool) {
+ $t->tag('input', array('type'=>'hidden', 'name'=>$post_key, 'value'=>'false'));
if ($value==true) {
$arr['checked'] = 'checked';
}
@@ -46,7 +49,6 @@ foreach ($users as $user) {
$arr['type'] = 'text';
}
- $t->openTag('td');
$t->tag('input', $arr);
$t->closeTag('td');
}
diff --git a/src/views/pages/users/individual.html.php b/src/views/pages/users/individual.html.php
index 9e3048a..6b23e0e 100644
--- a/src/views/pages/users/individual.html.php
+++ b/src/views/pages/users/individual.html.php
@@ -15,12 +15,19 @@ function inputTextarea($user, $key, $label, $hint='') {
!$user->canEdit());
}
+function inputBool($user, $key, $label, $hint='') {
+ global $VARS; $t = $VARS['template'];
+ $current_setting = $user->getConf($key)=='true';
+ $t->inputBool("user_$key", $label, $hint, $current_setting,
+ !$user->canEdit());
+}
+
function inputArray($user, $key, $arr) {
global $VARS; $t = $VARS['template'];
$defaults = $user->getConfArray($key);
foreach ($arr as $value => $label) {
- $t->inputBool($name, $value, $label,
+ $t->inputBoolArray($key, $value, $label,
in_array($value, $defaults), !$user->canEdit());
}
}