mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Added str_repeat() to fix bug #451851.
This commit is contained in:
parent
af775b2be8
commit
a3932c4008
@ -82,4 +82,13 @@
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
function str_repeat($input,$multiplier)
|
||||
{
|
||||
for($i=0,$output='';$i<$multiplier;$i++)
|
||||
{
|
||||
$output .= $input;
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user