forked from extern/egroupware
ereg_replace/intval update
This commit is contained in:
parent
bde5dcc84a
commit
1df412f9c4
@ -206,7 +206,7 @@
|
|||||||
/* start by looping thru the expected list and set params with */
|
/* start by looping thru the expected list and set params with */
|
||||||
/* the default values */
|
/* the default values */
|
||||||
$num = count($expected);
|
$num = count($expected);
|
||||||
for ($i = 0; $i < $num; $i++)
|
for ($i = 0; $i < $num; $i++)
|
||||||
{
|
{
|
||||||
$args[$expected[$i]['name']] = $expected[$i]['default'];
|
$args[$expected[$i]['name']] = $expected[$i]['default'];
|
||||||
if ($expected[$i]['default'] === '##REQUIRED##')
|
if ($expected[$i]['default'] === '##REQUIRED##')
|
||||||
@ -214,7 +214,7 @@
|
|||||||
$required[$expected[$i]['name']] = True;
|
$required[$expected[$i]['name']] = True;
|
||||||
}
|
}
|
||||||
$types[$expected[$i]['name']] = $expected[$i]['type'];
|
$types[$expected[$i]['name']] = $expected[$i]['type'];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Make sure they passed at least one param */
|
/* Make sure they passed at least one param */
|
||||||
if(count($recieved) != 0)
|
if(count($recieved) != 0)
|
||||||
@ -222,7 +222,7 @@
|
|||||||
/* if used as standard function we loop thru and set by position */
|
/* if used as standard function we loop thru and set by position */
|
||||||
if(!is_array($recieved[0]))
|
if(!is_array($recieved[0]))
|
||||||
{
|
{
|
||||||
for ($i = 0; $i < $num; $i++)
|
for ($i = 0; $i < $num; $i++)
|
||||||
{
|
{
|
||||||
if(isset($recieved[$i]) && $recieved[$i] !== '##DEFAULT##')
|
if(isset($recieved[$i]) && $recieved[$i] !== '##DEFAULT##')
|
||||||
{
|
{
|
||||||
@ -237,15 +237,15 @@
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* if used as standard function we loop thru and set by position */
|
/* if used as standard function we loop thru and set by position */
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for ($i = 0; $i < $num; $i++)
|
for ($i = 0; $i < $num; $i++)
|
||||||
{
|
{
|
||||||
$types[$expected[$i]['name']] = $expected[$i]['type'];
|
$types[$expected[$i]['name']] = $expected[$i]['type'];
|
||||||
}
|
}
|
||||||
while(list($key,$val) = each($recieved[0]))
|
while(list($key,$val) = each($recieved[0]))
|
||||||
{
|
{
|
||||||
if($val !== '##DEFAULT##')
|
if($val !== '##DEFAULT##')
|
||||||
@ -879,13 +879,13 @@
|
|||||||
{
|
{
|
||||||
return $GLOBALS['phpgw']->accounts->name2id($default_id);
|
return $GLOBALS['phpgw']->accounts->name2id($default_id);
|
||||||
}
|
}
|
||||||
return intval($default_id);
|
return (int)$default_id;
|
||||||
}
|
}
|
||||||
elseif (is_string($account_id))
|
elseif (is_string($account_id))
|
||||||
{
|
{
|
||||||
if($GLOBALS['phpgw']->accounts->exists(intval($account_id)) == True)
|
if($GLOBALS['phpgw']->accounts->exists((int)$account_id) == True)
|
||||||
{
|
{
|
||||||
return intval($account_id);
|
return (int)$account_id;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -957,8 +957,8 @@
|
|||||||
echo'<br>Input values: '
|
echo'<br>Input values: '
|
||||||
. 'A="'.$a.'", B="'.$b.'"';
|
. 'A="'.$a.'", B="'.$b.'"';
|
||||||
}
|
}
|
||||||
$newa = ereg_replace('pre','.',$a);
|
$newa = str_replace('pre','.',$a);
|
||||||
$newb = ereg_replace('pre','.',$b);
|
$newb = str_replace('pre','.',$b);
|
||||||
$testa = explode('.',$newa);
|
$testa = explode('.',$newa);
|
||||||
if(@$testa[1] == '')
|
if(@$testa[1] == '')
|
||||||
{
|
{
|
||||||
@ -981,8 +981,8 @@
|
|||||||
|
|
||||||
for ($i=0;$i<count($testa);$i++)
|
for ($i=0;$i<count($testa);$i++)
|
||||||
{
|
{
|
||||||
if ($DEBUG) { echo'<br>Checking if '. intval($testa[$i]) . ' is less than ' . intval($testb[$i]) . ' ...'; }
|
if ($DEBUG) { echo'<br>Checking if '. (int)$testa[$i] . ' is less than ' . (int)$testb[$i] . ' ...'; }
|
||||||
if (intval($testa[$i]) < intval($testb[$i]))
|
if ((int)$testa[$i] < (int)$testb[$i])
|
||||||
{
|
{
|
||||||
if ($DEBUG) { echo ' yes.'; }
|
if ($DEBUG) { echo ' yes.'; }
|
||||||
$less++;
|
$less++;
|
||||||
@ -994,7 +994,7 @@
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif(intval($testa[$i]) > intval($testb[$i]))
|
elseif((int)$testa[$i] > (int)$testb[$i])
|
||||||
{
|
{
|
||||||
if ($DEBUG) { echo ' no.'; }
|
if ($DEBUG) { echo ' no.'; }
|
||||||
$less--;
|
$less--;
|
||||||
@ -1046,8 +1046,8 @@
|
|||||||
echo'<br>Input values: '
|
echo'<br>Input values: '
|
||||||
. 'A="'.$a.'", B="'.$b.'"';
|
. 'A="'.$a.'", B="'.$b.'"';
|
||||||
}
|
}
|
||||||
$newa = ereg_replace('pre','.',$a);
|
$newa = str_replace('pre','.',$a);
|
||||||
$newb = ereg_replace('pre','.',$b);
|
$newb = str_replace('pre','.',$b);
|
||||||
$testa = explode('.',$newa);
|
$testa = explode('.',$newa);
|
||||||
if($testa[3] == '')
|
if($testa[3] == '')
|
||||||
{
|
{
|
||||||
@ -1062,8 +1062,8 @@
|
|||||||
|
|
||||||
for ($i=0;$i<count($testa);$i++)
|
for ($i=0;$i<count($testa);$i++)
|
||||||
{
|
{
|
||||||
if ($DEBUG) { echo'<br>Checking if '. intval($testa[$i]) . ' is more than ' . intval($testb[$i]) . ' ...'; }
|
if ($DEBUG) { echo'<br>Checking if '. (int)$testa[$i] . ' is more than ' . (int)$testb[$i] . ' ...'; }
|
||||||
if (intval($testa[$i]) > intval($testb[$i]))
|
if ((int)$testa[$i] > (int)$testb[$i])
|
||||||
{
|
{
|
||||||
if ($DEBUG) { echo ' yes.'; }
|
if ($DEBUG) { echo ' yes.'; }
|
||||||
$less++;
|
$less++;
|
||||||
@ -1075,7 +1075,7 @@
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif(intval($testa[$i]) < intval($testb[$i]))
|
elseif((int)$testa[$i] < (int)$testb[$i])
|
||||||
{
|
{
|
||||||
if ($DEBUG) { echo ' no.'; }
|
if ($DEBUG) { echo ' no.'; }
|
||||||
$less--;
|
$less--;
|
||||||
@ -1153,5 +1153,4 @@
|
|||||||
}
|
}
|
||||||
return $_GET['menuaction'] ? $_GET['menuaction'] : str_replace(PHPGW_SERVER_ROOT,'',$_SERVER['SCRIPT_FILENAME']);
|
return $_GET['menuaction'] ? $_GET['menuaction'] : str_replace(PHPGW_SERVER_ROOT,'',$_SERVER['SCRIPT_FILENAME']);
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -87,7 +87,7 @@
|
|||||||
if(@get_var('submit',Array('POST')) && @$newsettings && !$files_in_docroot)
|
if(@get_var('submit',Array('POST')) && @$newsettings && !$files_in_docroot)
|
||||||
{
|
{
|
||||||
$datetime = CreateObject('phpgwapi.datetime');
|
$datetime = CreateObject('phpgwapi.datetime');
|
||||||
switch (intval($newsettings['daytime_port']))
|
switch((int)$newsettings['daytime_port'])
|
||||||
{
|
{
|
||||||
case 13:
|
case 13:
|
||||||
$newsettings['tz_offset'] = $datetime->getntpoffset();
|
$newsettings['tz_offset'] = $datetime->getntpoffset();
|
||||||
@ -224,7 +224,7 @@
|
|||||||
$t->set_var($value,lang($newval));
|
$t->set_var($value,lang($newval));
|
||||||
break;
|
break;
|
||||||
case 'value':
|
case 'value':
|
||||||
$newval = ereg_replace(' ','_',$newval);
|
$newval = str_replace(' ','_',$newval);
|
||||||
/* Don't show passwords in the form */
|
/* Don't show passwords in the form */
|
||||||
if(ereg('passwd',$value) || ereg('password',$value) || ereg('root_pw',$value))
|
if(ereg('passwd',$value) || ereg('password',$value) || ereg('root_pw',$value))
|
||||||
{
|
{
|
||||||
@ -256,7 +256,7 @@
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'hook':
|
case 'hook':
|
||||||
$newval = ereg_replace(' ','_',$newval);
|
$newval = str_replace(' ','_',$newval);
|
||||||
$t->set_var($value,$newval($current_config));
|
$t->set_var($value,$newval($current_config));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user