forked from extern/egroupware
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