From ccc4b58bf4cb17f35908e7f88c29f7aca242bea5 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Wed, 31 Jan 2001 03:50:46 +0000 Subject: [PATCH] careful lewis.. a variable was inside ''. :) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@997 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/strings.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/functions/strings.php b/functions/strings.php index 82e8d014..c3299772 100644 --- a/functions/strings.php +++ b/functions/strings.php @@ -191,9 +191,9 @@ } if ($Quotes > 1) - $line = '$line'; + $line = ''.$line.''; elseif ($Quotes) - $line = '$line'; + $line = ''.$line.''; $body_ary[$i] = $line; } @@ -496,6 +496,7 @@ sq_mt_randomize(); // Initialize the random number generator + $String = ""; while (strlen($String) < $size) { $String .= $chars[mt_rand(0, strlen($chars))]; } @@ -503,4 +504,4 @@ return $String; } -?> \ No newline at end of file +?> -- 2.25.1