From ac7df5d8551cbacf60f9adc770783a710737fa90 Mon Sep 17 00:00:00 2001 From: Sebastian Schmelzer Date: Wed, 11 Jan 2012 15:59:04 +0100 Subject: fix stupid checkstyle bugs .. once again.. --- application/Functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'application/Functions.php') 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 ""; - $out . = ob_get_contents(); + $out .= ob_get_contents(); ob_end_clean(); echo $out; } else { -- cgit v1.2.3-55-g7522