From 8d2155e5c8fd51cc92613280d23ea4f174d8f204 Mon Sep 17 00:00:00 2001 From: cigamit Date: Thu, 28 Oct 2004 06:37:38 +0000 Subject: [PATCH] Minor bug fix, assignment in condition resulting in our seeding function to fail git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8265 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/strings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/strings.php b/functions/strings.php index 6e3c4473..792c0d0f 100644 --- a/functions/strings.php +++ b/functions/strings.php @@ -642,7 +642,7 @@ function sq_mt_seed($Val) { $Val *= -1; } - if ($Val = 0) { + if ($Val == 0) { return; } -- 2.25.1