diff options
Diffstat (limited to 'application/Functions.php')
| -rw-r--r-- | application/Functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/Functions.php b/application/Functions.php index 5055f03..5b58c35 100644 --- a/application/Functions.php +++ b/application/Functions.php @@ -15,7 +15,7 @@ function randomString($name_laenge = 16) { mt_srand ((double) microtime() * 1000000); for ($i = 0; $i < $name_laenge; $i++ ) { - $name_neu . = $zeichen {mt_rand (0, strlen($zeichen) - 1)}; + $name_neu .= $zeichen {mt_rand (0, strlen($zeichen) - 1)}; } return $name_neu; } @@ -29,7 +29,7 @@ function print_a() { for($a = 0; $a < $numargs; $a++) { print_a(func_get_arg($a)); } echo "</div>"; - $out . = ob_get_contents(); + $out .= ob_get_contents(); ob_end_clean(); echo $out; } else { |
