Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2339 → Rev 2340

/web/acc/manager/htdocs/user_edit.php
269,6 → 269,10
$grp_redir = $val;
break;
case 'Filter-Id' :
if (empty($val)) {
$val = '00000000'; // Set no filters if value is not set
}
 
if ($val[5] === '1') {
$grp_filter = $l_filtering_havp_wl;
} else if ($val[6] === '1') {
668,6 → 672,10
echo"<input id=\"popup_container\" type=\"text\" name=\"$name\" value=\"$val\" size=\"20\">";
break;
case 'Filter-Id' :
if (empty($val)) {
$val = '00000000'; // Set no filters if value is not set
}
 
if ($val[5] === '1') {
$selected = 'havp_wl';
} else if ($val[6] === '1') {
/web/acc/manager/lib/sql/defaults.php
85,7 → 85,7
if ($val == '')
continue;
$key = $rev_attrmap["$val"];
if ($key == ''){
if ((!isset($key)) || (empty($key))) {
$key = $val;
$attrmap["$key"] = $val;
$attr_type["$key"] = 'replyItem';
/web/acc/manager/lib/sql/group_info.php
101,7 → 101,7
if ($val == '')
continue;
$key = $rev_attrmap["$val"];
if ($key == ''){
if ((!isset($key)) || (empty($key))) {
$key = $val;
$attrmap["$key"] = $val;
$attr_type["$key"] = 'replyItem';
/web/acc/manager/lib/sql/user_info.php
105,7 → 105,7
if(isset($rev_attrmap["$val"])) {
$key = $rev_attrmap["$val"];
}
if ($key == ''){
if ((!isset($key)) || (empty($key))) {
$key = $val;
$attrmap["$key"] = $val;
$attr_type["$key"] = 'replyItem';