From: cigamit Date: Thu, 28 Oct 2004 06:37:38 +0000 (+0000) Subject: Minor bug fix, assignment in condition resulting in our seeding function to fail X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8d2155e5c8fd51cc92613280d23ea4f174d8f204;p=squirrelmail.git 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 --- 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; }