mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
php3 fix in call to get_list()
This commit is contained in:
parent
4fd65d883a
commit
fefe347b33
@ -53,12 +53,19 @@
|
||||
'all' => 99
|
||||
);
|
||||
|
||||
/*
|
||||
0 - No trust, but they may trust us
|
||||
1 - Trust to make requests of us
|
||||
2 - Trust remote server's trusts also
|
||||
3 - We both trust each other
|
||||
4 - We both trust each other, and we trust the remote server's trusts also
|
||||
*/
|
||||
var $trust_relationships = array(
|
||||
'outbound' => 0, /* No trust, but they may trust us */
|
||||
'inbound' => 1, /* Trust to make requests of us */
|
||||
'passthrough' => 2, /* Trust remote server's trusts also */
|
||||
'bi-directional' => 3, /* We both trust each other */
|
||||
'bi-dir passthrough' => 4 /* We both trust each other, and we trust the remote server's trusts also */
|
||||
'outbound' => 0,
|
||||
'inbound' => 1,
|
||||
'passthrough' => 2,
|
||||
'bi-directional' => 3,
|
||||
'bi-dir passthrough' => 4
|
||||
);
|
||||
|
||||
var $security_types = array(
|
||||
@ -419,7 +426,8 @@
|
||||
}
|
||||
$select .= '>' . lang('Please Select') . '</option>'."\n";
|
||||
|
||||
while (list($key,$val) = each($this->get_list()))
|
||||
$slist = $this->get_list();
|
||||
while (list($key,$val) = each($slist))
|
||||
{
|
||||
$foundservers = True;
|
||||
$select .= '<option value="' . $val['server_id'] . '"';
|
||||
|
Loading…
Reference in New Issue
Block a user