Browse Source

Minor bug fix, assignment in condition resulting in our seeding function to fail

Jimmy Conner 21 years ago
parent
commit
69b94b6a1c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      functions/strings.php

+ 1 - 1
functions/strings.php

@@ -642,7 +642,7 @@ function sq_mt_seed($Val) {
         $Val *= -1;
     }
 
-    if ($Val = 0) {
+    if ($Val == 0) {
         return;
     }